diff --git a/app/models/manageiq/providers/azure/cloud_manager/event_target_parser.rb b/app/models/manageiq/providers/azure/cloud_manager/event_target_parser.rb new file mode 100644 index 00000000..aad3e6a4 --- /dev/null +++ b/app/models/manageiq/providers/azure/cloud_manager/event_target_parser.rb @@ -0,0 +1,113 @@ +class ManageIQ::Providers::Azure::CloudManager::EventTargetParser + attr_reader :ems_event + + # @param ems_event [EmsEvent] EmsEvent object + def initialize(ems_event) + @ems_event = ems_event + end + + # Parses all targets that are present in the EmsEvent given in the initializer + # + # @return [Array] Array of ManagerRefresh::Target objects + def parse + parse_ems_event_targets(ems_event) + end + + private + + # Parses list of ManagerRefresh::Target out of the given EmsEvent + # + # @param event [EmsEvent] EmsEvent object + # @return [Array] Array of ManagerRefresh::Target objects + def parse_ems_event_targets(event) + target_collection = ManagerRefresh::TargetCollection.new(:manager => event.ext_management_system, :event => event) + + parse_event_target(target_collection, event.full_data) + + target_collection.targets + end + + def parse_event_target(target_collection, event_data) + resource_id = event_data.try(:[], "resourceId") + resource_type = event_data.try(:[], "resourceType").try(:[], "value") + association = case resource_type + when "Microsoft.Network/networkSecurityGroups" + :security_groups + when "Microsoft.Network/networkInterfaces" + :network_ports + when "Microsoft.Compute/virtualMachines" + :vms + when "Microsoft.Network/loadBalancers" + :load_balancers + when "Microsoft.Network/publicIPAddresses" + :floating_ips + when "Microsoft.Network/virtualNetworks" + :cloud_networks + when "Microsoft.Resources/deployments" + :orchestration_stacks + when "Microsoft.Compute/images" + :miq_templates + end + + add_target(target_collection, association, resource_id) if association && resource_id + end + + def transform_resource_id(association, resource_id) + case association + when :network_ports, :security_groups, :load_balancers, :floating_ips, :cloud_networks + fix_down_cased_resource_groups(resource_id) + when :orchestration_stacks + resource_id_for_stack_id(resource_id) + when :vms + resource_id_for_instance_id(resource_id) + when :miq_templates + resource_id.try(:downcase) + else + resource_id + end + end + + def add_target(target_collection, association, ref) + ref = transform_resource_id(association, ref) + + target_collection.add_target(:association => association, :manager_ref => {:ems_ref => ref}) if ref.present? + end + + def fix_down_cased_resource_groups(id) + return nil unless id + + array = id.split("/") + array[3] = "resourceGroups" # fixing resource group naming that was down-cased in Azure for some reason + standard_uid(array) + end + + def resource_id_for_stack_id(id) + # Transforming: + # /subscriptions/SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/deployments/Microsoft.LoadBalancer-20180305183523 + # to: + # /subscriptions/SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523 + # For some reason, the "providers/Microsoft.Resources" is missing in the middle and the resourcegroups is downcased + return nil unless id + array = id.split("/") + array[3] = "resourceGroups" # fixing resource group naming that was down-cased in Azure for some reason + + standard_uid(array[0..4] + ["providers", "Microsoft.Resources"] + array[5..-1]) + end + + def resource_id_for_instance_id(id) + return nil unless id + _, _, guid, _, resource_group, _, type, sub_type, name = id.split("/") + resource_uid(guid, + resource_group.downcase, + "#{type.downcase}/#{sub_type.downcase}", + name) + end + + def resource_uid(*keys) + keys.join('\\') + end + + def standard_uid(*keys) + keys.join("/") + end +end diff --git a/app/models/manageiq/providers/azure/cloud_manager/refresher.rb b/app/models/manageiq/providers/azure/cloud_manager/refresher.rb index 2746943a..0e361515 100644 --- a/app/models/manageiq/providers/azure/cloud_manager/refresher.rb +++ b/app/models/manageiq/providers/azure/cloud_manager/refresher.rb @@ -4,9 +4,9 @@ def parse_legacy_inventory(ems) ManageIQ::Providers::Azure::CloudManager::RefreshParser.ems_inv_to_hashes(ems, refresher_options) end - def save_inventory(ems, _targets, hashes) + def save_inventory(ems, target, _hashes) super - EmsRefresh.queue_refresh(ems.network_manager) + EmsRefresh.queue_refresh(ems.network_manager) if target.kind_of?(ManageIQ::Providers::BaseManager) end def preprocess_targets diff --git a/app/models/manageiq/providers/azure/inventory/collector/target_collection.rb b/app/models/manageiq/providers/azure/inventory/collector/target_collection.rb index 9f13ed67..2b8916a6 100644 --- a/app/models/manageiq/providers/azure/inventory/collector/target_collection.rb +++ b/app/models/manageiq/providers/azure/inventory/collector/target_collection.rb @@ -373,7 +373,7 @@ def infer_related_lb_ems_refs_api! def infer_related_stacks_ems_refs_api! # Get resource groups out of Stack references, we need them to fetch stacks references(:orchestration_stacks).each do |stack_ems_ref| - resource_group_ems_ref = stack_ems_ref.split("/")[0..-5].join("/") + resource_group_ems_ref = stack_ems_ref.split("/")[0..4].join("/") add_simple_target!(:resource_groups, resource_group_ems_ref.downcase) end target.manager_refs_by_association_reset diff --git a/app/models/manageiq/providers/azure/inventory/parser/cloud_manager.rb b/app/models/manageiq/providers/azure/inventory/parser/cloud_manager.rb index 8f4241c2..7aacfee5 100644 --- a/app/models/manageiq/providers/azure/inventory/parser/cloud_manager.rb +++ b/app/models/manageiq/providers/azure/inventory/parser/cloud_manager.rb @@ -304,12 +304,11 @@ def managed_images :raw_power_state => 'never', :template => true, :publicly_available => false, - :operating_system => process_os(image), :resource_group => persister.resource_groups.lazy_find(rg_ems_ref), ) - image_hardware(persister_miq_template, image) - image_operating_system(persister_miq_template, image.properties.storage_profile.try(:os_disk).try(:os_type) || 'unknown') + image_hardware(persister_miq_template, image.properties.storage_profile.try(:os_disk).try(:os_type) || 'unknown') + image_operating_system(persister_miq_template, image) end end diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/deployments_write_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/deployments_write_EndRequest.json new file mode 100644 index 00000000..82814bcc --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/deployments_write_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/deployments/Microsoft.LoadBalancer-20180305183523"},"description":"","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/deployments/Microsoft.LoadBalancer-20180305183523/events/875d5883-a917-4c8e-917a-a7f7c9fc79d3/ticks/636558681362539873","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft.Resources"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/deployments/Microsoft.LoadBalancer-20180305183523","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"eventTimestamp":"2018-03-05T17:35:36.2539873Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/images_write_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/images_write_EndRequest.json new file mode 100644 index 00000000..0f5aa27e --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/images_write_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Compute/images/write","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Compute/images/ladas_test"},"description":"","eventName":{"value":"EndRequest","localizedValue":"End request"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Compute/images/ladas_test/events/96f01941-3d26-4b4d-97b9-e9e0d3e14280/ticks/636559258550393259","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Compute/images/ladas_test","resourceType":{"value":"Microsoft.Compute/images","localizedValue":"Microsoft.Compute/images"},"eventTimestamp":"2018-03-06T09:37:35.0393259Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/loadBalancers_write_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/loadBalancers_write_EndRequest.json new file mode 100644 index 00000000..9381849f --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/loadBalancers_write_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Network/loadBalancers/write","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1"},"description":"","eventName":{"value":"EndRequest","localizedValue":"End request"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/events/2bb29507-79d8-46b6-8629-f5f5eb1355e0/ticks/636558687363304846","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1","resourceType":{"value":"Microsoft.Network/loadBalancers","localizedValue":"Microsoft.Network/loadBalancers"},"eventTimestamp":"2018-03-05T17:45:36.3304846Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/networkInterfaces_delete_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/networkInterfaces_delete_EndRequest.json new file mode 100644 index 00000000..133db448 --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/networkInterfaces_delete_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Network/networkInterfaces/delete","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/ladas_test"},"description":"","eventName":{"value":"EndRequest","localizedValue":"End request"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/ladas_test/events/3f9f6a09-2c90-4716-933b-260232019055/ticks/636558544083360561","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/ladas_test","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"eventTimestamp":"2018-03-05T13:46:48.3360561Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/networkInterfaces_write_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/networkInterfaces_write_EndRequest.json new file mode 100644 index 00000000..4dd97f19 --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/networkInterfaces_write_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/ladas_test"},"description":"","eventName":{"value":"EndRequest","localizedValue":"End request"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/ladas_test/events/6195adb0-bd99-4054-967c-613ec6b7f7c8/ticks/636558429074410008","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"eventTimestamp":"2018-03-05T10:35:07.4410008Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/networkSecurityGroups_write_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/networkSecurityGroups_write_EndRequest.json new file mode 100644 index 00000000..7c61a21b --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/networkSecurityGroups_write_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test"},"description":"","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test/events/340887fb-e1a3-4601-a905-d6d65da91094/ticks/636558619239128836","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"eventTimestamp":"2018-03-05T15:52:03.9128836Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/publicIPAddresses_write_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/publicIPAddresses_write_EndRequest.json new file mode 100644 index 00000000..0f7fe9d8 --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/publicIPAddresses_write_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/ladas_test"},"description":"","eventName":{"value":"EndRequest","localizedValue":"End request"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/ladas_test/events/738100fb-c581-4ad7-aa1e-29ba7764e34f/ticks/636559214172451326","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/ladas_test","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"eventTimestamp":"2018-03-06T08:23:37.2451326Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_deallocate_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_deallocate_EndRequest.json new file mode 100644 index 00000000..0d8770b1 --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_deallocate_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Compute/virtualMachines/deallocate/action","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1"},"description":"","eventName":{"value":"EndRequest","localizedValue":"End request"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/events/060ce392-afd8-45b3-a134-cc295971df86/ticks/636558511274483933","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"eventTimestamp":"2018-03-05T12:52:07.4483933Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_delete_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_delete_EndRequest.json new file mode 100644 index 00000000..e00282ef --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_delete_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Compute/virtualMachines/delete","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/ladas_test"},"description":"","eventName":{"value":"EndRequest","localizedValue":"End request"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/ladas_test/events/082d0487-6684-4ab8-aa26-c56bb108bba3/ticks/636558543943823694","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/ladas_test","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"eventTimestamp":"2018-03-05T13:46:34.3823694Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_powerOff_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_powerOff_EndRequest.json new file mode 100644 index 00000000..342fd98d --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_powerOff_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Compute/virtualMachines/powerOff/action","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1"},"description":"","eventName":{"value":"EndRequest","localizedValue":"End request"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/events/5e71a895-c59f-49fa-b3c2-7741d6fe5c6e/ticks/636558522219157492","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"eventTimestamp":"2018-03-05T13:10:21.9157492Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_restart_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_restart_EndRequest.json new file mode 100644 index 00000000..36d467fa --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_restart_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Compute/virtualMachines/restart/action","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1"},"description":"","eventName":{"value":"EndRequest","localizedValue":"End request"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/events/d5b6b84e-84a0-4d1c-af80-4f63b29de086/ticks/636558536501352398","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"eventTimestamp":"2018-03-05T13:34:10.1352398Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_start_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_start_EndRequest.json new file mode 100644 index 00000000..541baed8 --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_start_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Compute/virtualMachines/start/action","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1"},"description":"","eventName":{"value":"EndRequest","localizedValue":"End request"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/events/0e19e4ea-87b2-4004-a05a-e6025b4546ae/ticks/636558529239364817","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"eventTimestamp":"2018-03-05T13:22:03.9364817Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_write_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_write_EndRequest.json new file mode 100644 index 00000000..346aed80 --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualMachines_write_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1"},"description":"","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/events/a9cd526a-f9ad-4222-b477-61d109715de8/ticks/636558432914782063","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"eventTimestamp":"2018-03-05T10:41:31.4782063Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualNetworks_write_EndRequest.json b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualNetworks_write_EndRequest.json new file mode 100644 index 00000000..ff14b5cb --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_catcher/event_data/virtualNetworks_write_EndRequest.json @@ -0,0 +1 @@ +{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test"},"description":"","eventName":{"value":"EndRequest","localizedValue":"EndRequest"},"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test/events/9fd6785a-2287-4f90-9620-8a5f9140d60a/ticks/636558632267856705","resourceGroupName":"miq-azure-test1","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"eventTimestamp":"2018-03-05T16:13:46.7856705Z"} diff --git a/spec/models/manageiq/providers/azure/cloud_manager/event_target_parser_spec.rb b/spec/models/manageiq/providers/azure/cloud_manager/event_target_parser_spec.rb new file mode 100644 index 00000000..318f95f9 --- /dev/null +++ b/spec/models/manageiq/providers/azure/cloud_manager/event_target_parser_spec.rb @@ -0,0 +1,352 @@ +require 'azure-armrest' +require_relative "azure_refresher_spec_common" + +describe ManageIQ::Providers::Azure::CloudManager::EventTargetParser do + include AzureRefresherSpecCommon + + before(:each) do + refresh_settings = { + :inventory_object_refresh => true, + :inventory_collections => { + :saver_strategy => :default, + }, + } + + @refresh_settings = refresh_settings.merge(:allow_targeted_refresh => true) + + stub_settings_merge( + :ems_refresh => { + :azure => @refresh_settings, + :azure_network => @refresh_settings, + } + ) + end + + before do + _guid, _server, zone = EvmSpecHelper.create_guid_miq_server_zone + + @ems = FactoryGirl.create(:ems_azure_with_vcr_authentication, :zone => zone, :provider_region => 'eastus') + + @resource_group = 'miq-azure-test1' + @managed_vm = 'miqazure-linux-managed' + @device_name = 'miq-test-rhel1' # Make sure this is running if generating a new cassette. + @vm_powered_off = 'miqazure-centos1' # Make sure this is powered off if generating a new cassette. + @ip_address = '52.224.165.15' # This will change if you had to restart the @device_name. + @mismatch_ip = '52.168.33.118' # This will change if you had to restart the 'miqmismatch1' VM. + @managed_os_disk = "miqazure-linux-managed_OsDisk_1_7b2bdf790a7d4379ace2846d307730cd" + @managed_data_disk = "miqazure-linux-managed-data-disk" + @template = nil + @avail_zone = nil + + @resource_group_managed_vm = "miq-azure-test4" + end + + after do + ::Azure::Armrest::Configuration.clear_caches + end + + context "NetworkPort events" do + it "parses networkInterfaces_write_EndRequest event" do + event_type = "networkInterfaces_write_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:network_ports, {:ems_ref => "/subscriptions/#{@ems.subscription}/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + + it "parses networkInterfaces_delete_EndRequest event" do + event_type = "networkInterfaces_delete_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:network_ports, {:ems_ref => "/subscriptions/#{@ems.subscription}/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/ladas_test"}] + ] + ) + ) + + # For some reason, interface is still in the Provider's inventory after this event + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type, true) + end + end + + context "VM events" do + it "parses virtualMachines_delete_EndRequest event" do + event_type = "virtualMachines_delete_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:vms, {:ems_ref => "#{@ems.subscription}\\miq-azure-test1\\microsoft.compute/virtualmachines\\ladas_test"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type, true) + end + + it "parses virtualMachines_deallocate_EndRequest event" do + event_type = "virtualMachines_deallocate_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:vms, {:ems_ref => "#{@ems.subscription}\\miq-azure-test1\\microsoft.compute/virtualmachines\\miq-test-rhel1"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + + it "parses virtualMachines_restart_EndRequest event" do + event_type = "virtualMachines_restart_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:vms, {:ems_ref => "#{@ems.subscription}\\miq-azure-test1\\microsoft.compute/virtualmachines\\miq-test-rhel1"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + + it "parses virtualMachines_start_EndRequest event" do + event_type = "virtualMachines_start_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:vms, {:ems_ref => "#{@ems.subscription}\\miq-azure-test1\\microsoft.compute/virtualmachines\\miq-test-rhel1"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + + it "parses virtualMachines_powerOff_EndRequest event" do + event_type = "virtualMachines_deallocate_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:vms, {:ems_ref => "#{@ems.subscription}\\miq-azure-test1\\microsoft.compute/virtualmachines\\miq-test-rhel1"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + + it "parses virtualMachines_write_EndRequest event" do + event_type = "virtualMachines_write_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:vms, {:ems_ref => "#{@ems.subscription}\\miq-azure-test1\\microsoft.compute/virtualmachines\\miq-test-rhel1"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + end + + context "CloudNetwork events" do + it "parses virtualNetworks_write_EndRequest event" do + event_type = "virtualNetworks_write_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:cloud_networks, {:ems_ref => "/subscriptions/#{@ems.subscription}/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + end + + context "SecurityGroup events" do + it "parses networkSecurityGroups_write_EndRequest event" do + event_type = "networkSecurityGroups_write_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:security_groups, {:ems_ref => "/subscriptions/#{@ems.subscription}/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + end + + context "LoadBalancer events" do + it "parses loadBalancers_write_EndRequest event" do + event_type = "loadBalancers_write_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:load_balancers, {:ems_ref => "/subscriptions/#{@ems.subscription}/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + end + + context "OrchestrationStack events" do + it "parses deployments_write_EndRequest event" do + event_type = "deployments_write_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:orchestration_stacks, {:ems_ref => "/subscriptions/#{@ems.subscription}/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + end + + context "FloatingIp events" do + it "parses publicIPAddresses_write_EndRequest event" do + event_type = "publicIPAddresses_write_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:floating_ips, {:ems_ref => "/subscriptions/#{@ems.subscription}/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/ladas_test"}] + ] + ) + ) + + assert_target_refreshed_with_right_ems_ref(parsed_targets, event_type) + end + end + + context "Image events" do + it "parses images_write_EndRequest event" do + event_type = "images_write_EndRequest" + ems_event = create_ems_event(event_type) + + parsed_targets = described_class.new(ems_event).parse + + expect(parsed_targets.size).to eq(1) + expect(target_references(parsed_targets)).to( + match_array( + [ + [:miq_templates, {:ems_ref => "/subscriptions/#{@ems.subscription.downcase}/resourcegroups/miq-azure-test1/providers/microsoft.compute/images/ladas_test"}] + ] + ) + ) + end + end + + def assert_target_refreshed_with_right_ems_ref(parsed_targets, suffix, expect_to_be_nil = false) + # Due to non trivial transformation of ems_ref in several places of refresh parser, lets test actual targeted + # refresh leads to having the object in the DB. + refresh_with_cassette(parsed_targets, "/#{suffix}") + parsed_targets.each do |target| + if expect_to_be_nil + expect(fetch_record(target)).to be_nil, "Target :#{target.association} with manager_ref: #{target.manager_ref} is supossed to be soft deleted" + else + expect(fetch_record(target)).not_to be_nil, "Target :#{target.association} with manager_ref: #{target.manager_ref} was not refreshed" + end + end + end + + def fetch_record(target) + manager = case target.association + when :load_balancers + target.manager.network_manager + else + target.manager + end + manager.public_send(target.association).find_by(target.manager_ref) + end + + def target_references(parsed_targets) + parsed_targets.map { |x| [x.association, x.manager_ref] }.uniq + end + + def event(path) + event = File.read(File.join(File.dirname(__FILE__), "/event_catcher/event_data/#{path}.json")) + event.gsub!("AZURE_SUBSCRIPTION_ID", @ems.subscription) # put back the right subscription + JSON.parse(event) + end + + def create_ems_event(path) + event_hash = ManageIQ::Providers::Azure::CloudManager::EventParser.event_to_hash(event(path), @ems.id) + EmsEvent.add(@ems.id, event_hash) + end +end diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/deployments_write_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/deployments_write_EndRequest.yml new file mode 100644 index 00000000..87cdbdcc --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/deployments_write_EndRequest.yml @@ -0,0 +1,2815 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - 3bebc0ce-20bc-4636-bfaa-0d90e1890000 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzATteJVWwvYnXpc-sFHtCesspaTrXcGhNyuO_xhG-VaThxow0ODxxoWr-miANf3Mqt7_AqknkjZ8GvVOhmtOz-q1eRDTtDXS7zVZXUe6LGHrQSoG6kF_P3WKPNLx7e2D4J19O4OgrHSoU3MugxeqkkfwRzAzqBILOGEq2LmY7f4YgAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=007; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 20:42:43 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"0","expires_on":"1520458963","not_before":"1520455063","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA"}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:43 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14994' + X-Ms-Request-Id: + - ab7e69d0-1ccd-429d-8d62-1cba2e46f122 + X-Ms-Correlation-Request-Id: + - ab7e69d0-1ccd-429d-8d62-1cba2e46f122 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204243Z:ab7e69d0-1ccd-429d-8d62-1cba2e46f122 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:43 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:44 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14977' + X-Ms-Request-Id: + - e53163bd-4861-4f11-8edd-4150da834a23 + X-Ms-Correlation-Request-Id: + - e53163bd-4861-4f11-8edd-4150da834a23 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204245Z:e53163bd-4861-4f11-8edd-4150da834a23 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:45 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:46 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523?api-version=2017-08-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14978' + X-Ms-Request-Id: + - 0ab3ca9d-d82d-46cb-bc64-6adcd4672a51 + X-Ms-Correlation-Request-Id: + - 0ab3ca9d-d82d-46cb-bc64-6adcd4672a51 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204247Z:0ab3ca9d-d82d-46cb-bc64-6adcd4672a51 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:46 GMT + Content-Length: + - '1210' + body: + encoding: ASCII-8BIT + string: '{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523","name":"Microsoft.LoadBalancer-20180305183523","properties":{"templateHash":"5922405510627306819","parameters":{"name":{"type":"String","value":"ladas_test"},"location":{"type":"String","value":"eastus"},"subnetId":{"type":"String","value":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test/subnets/default"},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"}},"mode":"Incremental","debugSetting":{"detailLevel":"RequestContent, + ResponseContent"},"provisioningState":"Succeeded","timestamp":"2018-03-05T17:35:36.1871344Z","duration":"PT9.0580738S","correlationId":"24543763-21cb-476f-9d34-f2ad09a44a28","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["eastus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/ladas_test"}],"validationLevel":"Template"}}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:48 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523/operations?api-version=2017-08-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14971' + X-Ms-Request-Id: + - 39a08ab2-b040-4405-a840-1b37d37e4ad3 + X-Ms-Correlation-Request-Id: + - 39a08ab2-b040-4405-a840-1b37d37e4ad3 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204249Z:39a08ab2-b040-4405-a840-1b37d37e4ad3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:48 GMT + Content-Length: + - '2750' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523/operations/A59BA4FEB920BF71","operationId":"A59BA4FEB920BF71","properties":{"provisioningOperation":"Create","provisioningState":"Succeeded","timestamp":"2018-03-05T17:35:35.6645187Z","duration":"PT2.9667393S","trackingId":"1386425c-2663-4bdc-aa65-67dfd610eb20","serviceRequestId":"b9ca0964-0d62-4407-9169-c5343ae70cf5","statusCode":"Created","targetResource":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/ladas_test","resourceType":"Microsoft.Network/loadBalancers","resourceName":"ladas_test"},"request":{"content":{"location":"eastus","properties":{"frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","properties":{"privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test/subnets/default"}}}]}}},"response":{"content":{"name":"ladas_test","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/ladas_test","etag":"W/\"13b52cba-bf95-45d0-ab8e-9bf01cb63bd0\"","type":"Microsoft.Network/loadBalancers","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"bbe6cab5-79d6-4ba2-8ec5-aa14ac79ffdc","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/ladas_test/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"13b52cba-bf95-45d0-ab8e-9bf01cb63bd0\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"172.29.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test/subnets/default"}}}],"backendAddressPools":[],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"outboundNatRules":[],"inboundNatPools":[]},"sku":{"name":"Basic"}}}}},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523/operations/08586813355583485500","operationId":"08586813355583485500","properties":{"provisioningOperation":"EvaluateDeploymentOutput","provisioningState":"Succeeded","timestamp":"2018-03-05T17:35:36.1380039Z","duration":"PT0.3151836S","trackingId":"044e4754-5c4d-4429-aad1-9229d2361ab3","statusCode":"OK","statusMessage":null}}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:49 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/ladas_test?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + response: + status: + code: 404 + message: Not Found + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + X-Ms-Failure-Cause: + - gateway + X-Ms-Request-Id: + - 0ad52cfe-e9e7-4310-93a8-ead99318cd69 + X-Ms-Correlation-Request-Id: + - 0ad52cfe-e9e7-4310-93a8-ead99318cd69 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204252Z:0ad52cfe-e9e7-4310-93a8-ead99318cd69 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:52 GMT + Content-Length: + - '161' + body: + encoding: UTF-8 + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/loadBalancers/ladas_test'' + under resource group ''miq-azure-test1'' was not found."}}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:53 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1?api-version=2017-08-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14972' + X-Ms-Request-Id: + - c9e0d15d-8053-4156-b31e-4ae916b357b6 + X-Ms-Correlation-Request-Id: + - c9e0d15d-8053-4156-b31e-4ae916b357b6 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204255Z:c9e0d15d-8053-4156-b31e-4ae916b357b6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:54 GMT + Content-Length: + - '183' + body: + encoding: ASCII-8BIT + string: '{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1","name":"miq-azure-test1","location":"eastus","properties":{"provisioningState":"Succeeded"}}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:55 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523?api-version=2017-08-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14975' + X-Ms-Request-Id: + - 0e07ad22-fe5e-435e-be46-8786c26748ba + X-Ms-Correlation-Request-Id: + - 0e07ad22-fe5e-435e-be46-8786c26748ba + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204255Z:0e07ad22-fe5e-435e-be46-8786c26748ba + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:55 GMT + Content-Length: + - '1210' + body: + encoding: ASCII-8BIT + string: '{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523","name":"Microsoft.LoadBalancer-20180305183523","properties":{"templateHash":"5922405510627306819","parameters":{"name":{"type":"String","value":"ladas_test"},"location":{"type":"String","value":"eastus"},"subnetId":{"type":"String","value":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test/subnets/default"},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"}},"mode":"Incremental","debugSetting":{"detailLevel":"RequestContent, + ResponseContent"},"provisioningState":"Succeeded","timestamp":"2018-03-05T17:35:36.1871344Z","duration":"PT9.0580738S","correlationId":"24543763-21cb-476f-9d34-f2ad09a44a28","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["eastus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/ladas_test"}],"validationLevel":"Template"}}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:56 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523?api-version=2017-08-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14974' + X-Ms-Request-Id: + - 879246f1-d7f5-4263-b77f-397addc982b3 + X-Ms-Correlation-Request-Id: + - 879246f1-d7f5-4263-b77f-397addc982b3 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204256Z:879246f1-d7f5-4263-b77f-397addc982b3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:56 GMT + Content-Length: + - '1210' + body: + encoding: ASCII-8BIT + string: '{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523","name":"Microsoft.LoadBalancer-20180305183523","properties":{"templateHash":"5922405510627306819","parameters":{"name":{"type":"String","value":"ladas_test"},"location":{"type":"String","value":"eastus"},"subnetId":{"type":"String","value":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test/subnets/default"},"privateIPAllocationMethod":{"type":"String","value":"Dynamic"}},"mode":"Incremental","debugSetting":{"detailLevel":"RequestContent, + ResponseContent"},"provisioningState":"Succeeded","timestamp":"2018-03-05T17:35:36.1871344Z","duration":"PT9.0580738S","correlationId":"24543763-21cb-476f-9d34-f2ad09a44a28","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"loadBalancers","locations":["eastus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/ladas_test"}],"validationLevel":"Template"}}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:56 GMT +- request: + method: post + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Resources/deployments/Microsoft.LoadBalancer-20180305183523/exportTemplate?api-version=2017-08-01 + body: + encoding: ASCII-8BIT + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + Content-Length: + - '0' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - '1196' + X-Ms-Request-Id: + - 8b6531ca-a93f-4468-b608-983142601c27 + X-Ms-Correlation-Request-Id: + - 8b6531ca-a93f-4468-b608-983142601c27 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204257Z:8b6531ca-a93f-4468-b608-983142601c27 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:57 GMT + body: + encoding: ASCII-8BIT + string: '{"template":{"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{"name":{"type":"String"},"location":{"type":"String"},"subnetId":{"type":"String"},"privateIPAllocationMethod":{"type":"String"}},"resources":[{"type":"Microsoft.Network/loadBalancers","name":"[parameters(''name'')]","apiVersion":"2017-08-01","location":"[parameters(''location'')]","properties":{"frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","properties":{"privateIPAllocationMethod":"[parameters(''privateIPAllocationMethod'')]","subnet":{"id":"[parameters(''subnetId'')]"}}}]},"dependsOn":[]}]}}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:57 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/ladas_test?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + response: + status: + code: 404 + message: Not Found + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + X-Ms-Failure-Cause: + - gateway + X-Ms-Request-Id: + - 6208cce6-be8d-4a22-99c3-c0b54d78b610 + X-Ms-Correlation-Request-Id: + - 6208cce6-be8d-4a22-99c3-c0b54d78b610 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204304Z:6208cce6-be8d-4a22-99c3-c0b54d78b610 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:03 GMT + Content-Length: + - '161' + body: + encoding: UTF-8 + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/loadBalancers/ladas_test'' + under resource group ''miq-azure-test1'' was not found."}}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:04 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/ladas_test?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNjMsIm5iZiI6MTUyMDQ1NTA2MywiZXhwIjoxNTIwNDU4OTYzLCJhaW8iOiJZMk5nWUhqWmtaWHlyYzF1MDdGOUNaOU5qMHJ4QUFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoienNEck83d2dOa2FfcWcyUTRZa0FBQSIsInZlciI6IjEuMCJ9.n0eyQaKviVZcgP8TPtDB4v8lSkxjKHmNZrtlFsygecXD0dpS9DIksgruD4lBNzxnplMGXA8bu7T4aMhduMnlcqwuj9yHAfk31Ldr2IryHg2QKxJeGKUYD3M1YtjEBNc7oblWCT1l3c7-RWhQgzLn2AdbGjYo3SqIpBgcesfwyugAm41nhWw-GUA_a2FHIn2zy-qmR6Y_KdYFe_yTAbCZcMY1pAmkJKVbx4xi3Bf1_QIz2SOv2wro7q7jDlBD30A-jYb6Xz69mae8Bl6QNJfIoEo4TqKwD6JP4d6qG5oTLQM6I_piKM_sJaulqmVf0z9CzZTiYadxOGNjouu3JuJ-xA + response: + status: + code: 404 + message: Not Found + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + X-Ms-Failure-Cause: + - gateway + X-Ms-Request-Id: + - a6806348-d377-47d0-9a13-4d250a8ddb22 + X-Ms-Correlation-Request-Id: + - a6806348-d377-47d0-9a13-4d250a8ddb22 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204304Z:a6806348-d377-47d0-9a13-4d250a8ddb22 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:04 GMT + Content-Length: + - '161' + body: + encoding: UTF-8 + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/loadBalancers/ladas_test'' + under resource group ''miq-azure-test1'' was not found."}}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:05 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/loadBalancers_write_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/loadBalancers_write_EndRequest.yml new file mode 100644 index 00000000..3792cf17 --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/loadBalancers_write_EndRequest.yml @@ -0,0 +1,2735 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - 874b0951-3f9c-4985-b5f2-2852a7310100 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzwbfAPekspi-NRohd8ipTWurhBGJB7P36h-Azmynl8akSekuHfc9hTJGmHf_IKKY6-5dQIt5JT0SZist65cHkyVU7BKy_1n9w5SJdZimgHr0L-RsI9Es-f-jxwkglCJZhuCPjhCp1brmCdxVy2v3AvBss12ze0dDFmOPuOlPsD0cgAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=003; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 21:44:06 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"0","expires_on":"1520462647","not_before":"1520458747","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg3NDcsIm5iZiI6MTUyMDQ1ODc0NywiZXhwIjoxNTIwNDYyNjQ3LCJhaW8iOiJZMk5nWUxEbUtXMDk5clB4cU9QdGorL1crV3NlQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiVVFsTGg1d19oVW0xOGloU3B6RUJBQSIsInZlciI6IjEuMCJ9.VRRCSDo8niW0GWXajYzZsJuWtgE_8HgkPe52Pbk0XpdwYcpDqGDaQsK5pfUGDD7i_W-E61GI9GniyEkFc77CfVvkFmP1wULy0cY5b6ANdbzByPWgkToD9hgTpFi4uFKs438KF_88sK8TIFF8i1L0zGlhlEdCQ1TNMEfj82eTstT0_rWMgCP--lTGXz0_Uu4fTVbqxDjVi4mNwJ6d7mZeHG6JpgNQUTKQ9Ev8k0w8cbxxG-nm-7CnorOFAM9ViKBMDqW8gBJKlJWErUwdIDEkUm7l1qFDe7QX7J4LmaS-ruHFdNEo1mJaLrEixYpBTw_v8L3UEl-GnUHwaJBSN1k5ig"}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:44:07 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg3NDcsIm5iZiI6MTUyMDQ1ODc0NywiZXhwIjoxNTIwNDYyNjQ3LCJhaW8iOiJZMk5nWUxEbUtXMDk5clB4cU9QdGorL1crV3NlQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiVVFsTGg1d19oVW0xOGloU3B6RUJBQSIsInZlciI6IjEuMCJ9.VRRCSDo8niW0GWXajYzZsJuWtgE_8HgkPe52Pbk0XpdwYcpDqGDaQsK5pfUGDD7i_W-E61GI9GniyEkFc77CfVvkFmP1wULy0cY5b6ANdbzByPWgkToD9hgTpFi4uFKs438KF_88sK8TIFF8i1L0zGlhlEdCQ1TNMEfj82eTstT0_rWMgCP--lTGXz0_Uu4fTVbqxDjVi4mNwJ6d7mZeHG6JpgNQUTKQ9Ev8k0w8cbxxG-nm-7CnorOFAM9ViKBMDqW8gBJKlJWErUwdIDEkUm7l1qFDe7QX7J4LmaS-ruHFdNEo1mJaLrEixYpBTw_v8L3UEl-GnUHwaJBSN1k5ig + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14999' + X-Ms-Request-Id: + - 8101dccd-2562-40ee-a58b-f34122017ced + X-Ms-Correlation-Request-Id: + - 8101dccd-2562-40ee-a58b-f34122017ced + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T214408Z:8101dccd-2562-40ee-a58b-f34122017ced + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:44:07 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:44:08 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg3NDcsIm5iZiI6MTUyMDQ1ODc0NywiZXhwIjoxNTIwNDYyNjQ3LCJhaW8iOiJZMk5nWUxEbUtXMDk5clB4cU9QdGorL1crV3NlQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiVVFsTGg1d19oVW0xOGloU3B6RUJBQSIsInZlciI6IjEuMCJ9.VRRCSDo8niW0GWXajYzZsJuWtgE_8HgkPe52Pbk0XpdwYcpDqGDaQsK5pfUGDD7i_W-E61GI9GniyEkFc77CfVvkFmP1wULy0cY5b6ANdbzByPWgkToD9hgTpFi4uFKs438KF_88sK8TIFF8i1L0zGlhlEdCQ1TNMEfj82eTstT0_rWMgCP--lTGXz0_Uu4fTVbqxDjVi4mNwJ6d7mZeHG6JpgNQUTKQ9Ev8k0w8cbxxG-nm-7CnorOFAM9ViKBMDqW8gBJKlJWErUwdIDEkUm7l1qFDe7QX7J4LmaS-ruHFdNEo1mJaLrEixYpBTw_v8L3UEl-GnUHwaJBSN1k5ig + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14941' + X-Ms-Request-Id: + - 0a1a51a5-1c97-4636-bc5a-1979a51ee7a1 + X-Ms-Correlation-Request-Id: + - 0a1a51a5-1c97-4636-bc5a-1979a51ee7a1 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T214410Z:0a1a51a5-1c97-4636-bc5a-1979a51ee7a1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:44:10 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:44:10 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg3NDcsIm5iZiI6MTUyMDQ1ODc0NywiZXhwIjoxNTIwNDYyNjQ3LCJhaW8iOiJZMk5nWUxEbUtXMDk5clB4cU9QdGorL1crV3NlQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiVVFsTGg1d19oVW0xOGloU3B6RUJBQSIsInZlciI6IjEuMCJ9.VRRCSDo8niW0GWXajYzZsJuWtgE_8HgkPe52Pbk0XpdwYcpDqGDaQsK5pfUGDD7i_W-E61GI9GniyEkFc77CfVvkFmP1wULy0cY5b6ANdbzByPWgkToD9hgTpFi4uFKs438KF_88sK8TIFF8i1L0zGlhlEdCQ1TNMEfj82eTstT0_rWMgCP--lTGXz0_Uu4fTVbqxDjVi4mNwJ6d7mZeHG6JpgNQUTKQ9Ev8k0w8cbxxG-nm-7CnorOFAM9ViKBMDqW8gBJKlJWErUwdIDEkUm7l1qFDe7QX7J4LmaS-ruHFdNEo1mJaLrEixYpBTw_v8L3UEl-GnUHwaJBSN1k5ig + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 7b86dc4b-6066-4c14-8e98-333f28ef23f0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14963' + X-Ms-Correlation-Request-Id: + - 7f18fb06-1c63-432b-bdca-2910bf171c76 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T214411Z:7f18fb06-1c63-432b-bdca-2910bf171c76 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:44:11 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"rspec-lb1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ab88756-810f-4083-95db-8b05d50e38f2\",\r\n + \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": + {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb1-LoadBalancerFrontEnd\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": + [\r\n {\r\n \"name\": \"rspec-lb-pool\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1\"\r\n + \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": + [\r\n {\r\n \"name\": \"rspec-lb1-rule\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n + \ },\r\n \"frontendPort\": 80,\r\n \"backendPort\": + 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/probes/rspec-lb-probe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"rspec-lb-probe\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/probes/rspec-lb-probe\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": + \"/\",\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": + 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": + [\r\n {\r\n \"name\": \"rspec-lb1-NAT\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n + \ },\r\n \"frontendPort\": 3441,\r\n \"backendPort\": + 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": + [],\r\n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": + \"Basic\"\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:44:12 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg3NDcsIm5iZiI6MTUyMDQ1ODc0NywiZXhwIjoxNTIwNDYyNjQ3LCJhaW8iOiJZMk5nWUxEbUtXMDk5clB4cU9QdGorL1crV3NlQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiVVFsTGg1d19oVW0xOGloU3B6RUJBQSIsInZlciI6IjEuMCJ9.VRRCSDo8niW0GWXajYzZsJuWtgE_8HgkPe52Pbk0XpdwYcpDqGDaQsK5pfUGDD7i_W-E61GI9GniyEkFc77CfVvkFmP1wULy0cY5b6ANdbzByPWgkToD9hgTpFi4uFKs438KF_88sK8TIFF8i1L0zGlhlEdCQ1TNMEfj82eTstT0_rWMgCP--lTGXz0_Uu4fTVbqxDjVi4mNwJ6d7mZeHG6JpgNQUTKQ9Ev8k0w8cbxxG-nm-7CnorOFAM9ViKBMDqW8gBJKlJWErUwdIDEkUm7l1qFDe7QX7J4LmaS-ruHFdNEo1mJaLrEixYpBTw_v8L3UEl-GnUHwaJBSN1k5ig + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 0c2850f4-6a59-4674-af17-c24b789c5d53 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14955' + X-Ms-Correlation-Request-Id: + - 71e8bcc6-3496-49d1-9671-2fffda8d0765 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T214412Z:71e8bcc6-3496-49d1-9671-2fffda8d0765 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:44:12 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"rspec-lb1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ab88756-810f-4083-95db-8b05d50e38f2\",\r\n + \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": + {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb1-LoadBalancerFrontEnd\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": + [\r\n {\r\n \"name\": \"rspec-lb-pool\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1\"\r\n + \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": + [\r\n {\r\n \"name\": \"rspec-lb1-rule\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n + \ },\r\n \"frontendPort\": 80,\r\n \"backendPort\": + 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/probes/rspec-lb-probe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"rspec-lb-probe\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/probes/rspec-lb-probe\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": + \"/\",\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": + 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": + [\r\n {\r\n \"name\": \"rspec-lb1-NAT\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n + \ },\r\n \"frontendPort\": 3441,\r\n \"backendPort\": + 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": + [],\r\n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": + \"Basic\"\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:44:13 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg3NDcsIm5iZiI6MTUyMDQ1ODc0NywiZXhwIjoxNTIwNDYyNjQ3LCJhaW8iOiJZMk5nWUxEbUtXMDk5clB4cU9QdGorL1crV3NlQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiVVFsTGg1d19oVW0xOGloU3B6RUJBQSIsInZlciI6IjEuMCJ9.VRRCSDo8niW0GWXajYzZsJuWtgE_8HgkPe52Pbk0XpdwYcpDqGDaQsK5pfUGDD7i_W-E61GI9GniyEkFc77CfVvkFmP1wULy0cY5b6ANdbzByPWgkToD9hgTpFi4uFKs438KF_88sK8TIFF8i1L0zGlhlEdCQ1TNMEfj82eTstT0_rWMgCP--lTGXz0_Uu4fTVbqxDjVi4mNwJ6d7mZeHG6JpgNQUTKQ9Ev8k0w8cbxxG-nm-7CnorOFAM9ViKBMDqW8gBJKlJWErUwdIDEkUm7l1qFDe7QX7J4LmaS-ruHFdNEo1mJaLrEixYpBTw_v8L3UEl-GnUHwaJBSN1k5ig + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 5eb99c3c-0484-48f1-b94b-bf4c51fd28f0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14955' + X-Ms-Correlation-Request-Id: + - c3b531e4-390b-42eb-9c41-927274ab0360 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T214413Z:c3b531e4-390b-42eb-9c41-927274ab0360 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:44:13 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"rspec-lb1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ab88756-810f-4083-95db-8b05d50e38f2\",\r\n + \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": + {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb1-LoadBalancerFrontEnd\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": + [\r\n {\r\n \"name\": \"rspec-lb-pool\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1\"\r\n + \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": + [\r\n {\r\n \"name\": \"rspec-lb1-rule\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n + \ },\r\n \"frontendPort\": 80,\r\n \"backendPort\": + 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/probes/rspec-lb-probe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"rspec-lb-probe\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/probes/rspec-lb-probe\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": + \"/\",\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": + 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/loadBalancingRules/rspec-lb1-rule\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": + [\r\n {\r\n \"name\": \"rspec-lb1-NAT\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT\",\r\n + \ \"etag\": \"W/\\\"fcf2a6a6-dd42-4af7-8096-bc40dd8fce67\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n + \ },\r\n \"frontendPort\": 3441,\r\n \"backendPort\": + 3389,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": + [],\r\n \"inboundNatPools\": []\r\n },\r\n \"sku\": {\r\n \"name\": + \"Basic\"\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:44:13 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb1-LoadBalancerFrontEnd?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg3NDcsIm5iZiI6MTUyMDQ1ODc0NywiZXhwIjoxNTIwNDYyNjQ3LCJhaW8iOiJZMk5nWUxEbUtXMDk5clB4cU9QdGorL1crV3NlQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiVVFsTGg1d19oVW0xOGloU3B6RUJBQSIsInZlciI6IjEuMCJ9.VRRCSDo8niW0GWXajYzZsJuWtgE_8HgkPe52Pbk0XpdwYcpDqGDaQsK5pfUGDD7i_W-E61GI9GniyEkFc77CfVvkFmP1wULy0cY5b6ANdbzByPWgkToD9hgTpFi4uFKs438KF_88sK8TIFF8i1L0zGlhlEdCQ1TNMEfj82eTstT0_rWMgCP--lTGXz0_Uu4fTVbqxDjVi4mNwJ6d7mZeHG6JpgNQUTKQ9Ev8k0w8cbxxG-nm-7CnorOFAM9ViKBMDqW8gBJKlJWErUwdIDEkUm7l1qFDe7QX7J4LmaS-ruHFdNEo1mJaLrEixYpBTw_v8L3UEl-GnUHwaJBSN1k5ig + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"a38434c8-7b23-4092-b7c6-402238eac0dc" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 97b1bcdb-6458-4687-9f54-1f9cb5a1d644 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14952' + X-Ms-Correlation-Request-Id: + - '03998c7e-39c7-4514-b852-295905bb197d' + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T214414Z:03998c7e-39c7-4514-b852-295905bb197d + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:44:14 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"rspec-lb1-LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb1-LoadBalancerFrontEnd\",\r\n + \ \"etag\": \"W/\\\"a38434c8-7b23-4092-b7c6-402238eac0dc\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f28e0f25-b372-4edf-97d9-13a9e3b4ba2d\",\r\n \"ipAddress\": + \"40.71.82.83\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n + \ \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:44:14 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/networkInterfaces_delete_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/networkInterfaces_delete_EndRequest.yml new file mode 100644 index 00000000..7497cd39 --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/networkInterfaces_delete_EndRequest.yml @@ -0,0 +1,2440 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - 7c96e42d-fc9e-4023-bbce-2bcf4e970000 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzaS52WCpBoeWc29YogL63hprp34T-7vgLQcf_vfYGXLtRisn4dKL0THVnnVnnWlTIFVlENVXm9ILZadGJpu9Vb5c3NS8qTcOXfQFHYN4yMyj2AkCULruqzutfUNogLRLYar2jjDCC9LFrGwzbxkTVOga0CftKJ4_VkGag51Z7nKEgAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=007; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 20:43:05 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"0","expires_on":"1520458986","not_before":"1520455086","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwODYsIm5iZiI6MTUyMDQ1NTA4NiwiZXhwIjoxNTIwNDU4OTg2LCJhaW8iOiJZMk5nWUpnU2xxeG4vSTJOMTBmYWNkZHltZXE3QUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiTGVTV2ZKNzhJMEM3eml2UFRwY0FBQSIsInZlciI6IjEuMCJ9.GQqt9IRU9K5D0GEUTMBPbnRr2Iphl5hjgOOXwi3h6uGnA8tids8Pd9PFxo2-CvLd2QooyUIHdhfyz8J8DONMyBZHMb6Qw8y_vw667HG2_v40e1OI44_UdMWA83WW1br3FSQZKFjgAWmzig2KEMxQWvXhE2OBsuNSXGDmq8d8DcSYQ-wI99OqOTIC9N2KjKVBQMMu0W_F7fIKbpQvm_bw2LA-Ornuzhp41dj3RVYCX-R-1LS41WTN-bF_M2vzAZKagZkm7WLHA1rPJs7fVPacJm6nOTbn_41sdpxXqkJ9W86ncB4Nrb5m-EJwVUaYyiwvLgZ9x17SFRW1fgxWIfjJVA"}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:06 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwODYsIm5iZiI6MTUyMDQ1NTA4NiwiZXhwIjoxNTIwNDU4OTg2LCJhaW8iOiJZMk5nWUpnU2xxeG4vSTJOMTBmYWNkZHltZXE3QUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiTGVTV2ZKNzhJMEM3eml2UFRwY0FBQSIsInZlciI6IjEuMCJ9.GQqt9IRU9K5D0GEUTMBPbnRr2Iphl5hjgOOXwi3h6uGnA8tids8Pd9PFxo2-CvLd2QooyUIHdhfyz8J8DONMyBZHMb6Qw8y_vw667HG2_v40e1OI44_UdMWA83WW1br3FSQZKFjgAWmzig2KEMxQWvXhE2OBsuNSXGDmq8d8DcSYQ-wI99OqOTIC9N2KjKVBQMMu0W_F7fIKbpQvm_bw2LA-Ornuzhp41dj3RVYCX-R-1LS41WTN-bF_M2vzAZKagZkm7WLHA1rPJs7fVPacJm6nOTbn_41sdpxXqkJ9W86ncB4Nrb5m-EJwVUaYyiwvLgZ9x17SFRW1fgxWIfjJVA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14998' + X-Ms-Request-Id: + - 54f215ce-7805-4b56-b452-b734dce330d0 + X-Ms-Correlation-Request-Id: + - 54f215ce-7805-4b56-b452-b734dce330d0 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204306Z:54f215ce-7805-4b56-b452-b734dce330d0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:06 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:06 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwODYsIm5iZiI6MTUyMDQ1NTA4NiwiZXhwIjoxNTIwNDU4OTg2LCJhaW8iOiJZMk5nWUpnU2xxeG4vSTJOMTBmYWNkZHltZXE3QUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiTGVTV2ZKNzhJMEM3eml2UFRwY0FBQSIsInZlciI6IjEuMCJ9.GQqt9IRU9K5D0GEUTMBPbnRr2Iphl5hjgOOXwi3h6uGnA8tids8Pd9PFxo2-CvLd2QooyUIHdhfyz8J8DONMyBZHMb6Qw8y_vw667HG2_v40e1OI44_UdMWA83WW1br3FSQZKFjgAWmzig2KEMxQWvXhE2OBsuNSXGDmq8d8DcSYQ-wI99OqOTIC9N2KjKVBQMMu0W_F7fIKbpQvm_bw2LA-Ornuzhp41dj3RVYCX-R-1LS41WTN-bF_M2vzAZKagZkm7WLHA1rPJs7fVPacJm6nOTbn_41sdpxXqkJ9W86ncB4Nrb5m-EJwVUaYyiwvLgZ9x17SFRW1fgxWIfjJVA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14974' + X-Ms-Request-Id: + - 7e979e35-5873-40c5-bcd9-068822238f20 + X-Ms-Correlation-Request-Id: + - 7e979e35-5873-40c5-bcd9-068822238f20 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204308Z:7e979e35-5873-40c5-bcd9-068822238f20 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:07 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:09 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/ladas_test?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwODYsIm5iZiI6MTUyMDQ1NTA4NiwiZXhwIjoxNTIwNDU4OTg2LCJhaW8iOiJZMk5nWUpnU2xxeG4vSTJOMTBmYWNkZHltZXE3QUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiTGVTV2ZKNzhJMEM3eml2UFRwY0FBQSIsInZlciI6IjEuMCJ9.GQqt9IRU9K5D0GEUTMBPbnRr2Iphl5hjgOOXwi3h6uGnA8tids8Pd9PFxo2-CvLd2QooyUIHdhfyz8J8DONMyBZHMb6Qw8y_vw667HG2_v40e1OI44_UdMWA83WW1br3FSQZKFjgAWmzig2KEMxQWvXhE2OBsuNSXGDmq8d8DcSYQ-wI99OqOTIC9N2KjKVBQMMu0W_F7fIKbpQvm_bw2LA-Ornuzhp41dj3RVYCX-R-1LS41WTN-bF_M2vzAZKagZkm7WLHA1rPJs7fVPacJm6nOTbn_41sdpxXqkJ9W86ncB4Nrb5m-EJwVUaYyiwvLgZ9x17SFRW1fgxWIfjJVA + response: + status: + code: 404 + message: Not Found + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + X-Ms-Failure-Cause: + - gateway + X-Ms-Request-Id: + - 513307ca-61f6-49f0-abdb-b86f7aa59d3a + X-Ms-Correlation-Request-Id: + - 513307ca-61f6-49f0-abdb-b86f7aa59d3a + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204309Z:513307ca-61f6-49f0-abdb-b86f7aa59d3a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:09 GMT + Content-Length: + - '165' + body: + encoding: UTF-8 + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/networkInterfaces/ladas_test'' + under resource group ''miq-azure-test1'' was not found."}}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:09 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/ladas_test?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwODYsIm5iZiI6MTUyMDQ1NTA4NiwiZXhwIjoxNTIwNDU4OTg2LCJhaW8iOiJZMk5nWUpnU2xxeG4vSTJOMTBmYWNkZHltZXE3QUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiTGVTV2ZKNzhJMEM3eml2UFRwY0FBQSIsInZlciI6IjEuMCJ9.GQqt9IRU9K5D0GEUTMBPbnRr2Iphl5hjgOOXwi3h6uGnA8tids8Pd9PFxo2-CvLd2QooyUIHdhfyz8J8DONMyBZHMb6Qw8y_vw667HG2_v40e1OI44_UdMWA83WW1br3FSQZKFjgAWmzig2KEMxQWvXhE2OBsuNSXGDmq8d8DcSYQ-wI99OqOTIC9N2KjKVBQMMu0W_F7fIKbpQvm_bw2LA-Ornuzhp41dj3RVYCX-R-1LS41WTN-bF_M2vzAZKagZkm7WLHA1rPJs7fVPacJm6nOTbn_41sdpxXqkJ9W86ncB4Nrb5m-EJwVUaYyiwvLgZ9x17SFRW1fgxWIfjJVA + response: + status: + code: 404 + message: Not Found + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + X-Ms-Failure-Cause: + - gateway + X-Ms-Request-Id: + - 2ee19fb0-7bae-46ae-a001-52f456af01b4 + X-Ms-Correlation-Request-Id: + - 2ee19fb0-7bae-46ae-a001-52f456af01b4 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204310Z:2ee19fb0-7bae-46ae-a001-52f456af01b4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:09 GMT + Content-Length: + - '165' + body: + encoding: UTF-8 + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/networkInterfaces/ladas_test'' + under resource group ''miq-azure-test1'' was not found."}}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:10 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/networkInterfaces_write_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/networkInterfaces_write_EndRequest.yml new file mode 100644 index 00000000..0081c1f4 --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/networkInterfaces_write_EndRequest.yml @@ -0,0 +1,2778 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - aa63ed68-452f-4401-a776-bc9c670b0100 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHz2ECSV0iDK7AOlgeqsQLVs1XJTA3nKxQubiB-xPmaaa5buR2htfaQJ88Dmg5waEZ2jUNOrxgX0-MHLsylqtDm8Qdzt05psFTRN0hc0HUlY3zJB96TRgp-8VrJVWo2h9o2lQsnykZk36YCOdbnaXvZgU_hCQv6hvfJ77TnYZIBgHcgAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=008; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 21:34:05 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"0","expires_on":"1520462046","not_before":"1520458146","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgxNDYsIm5iZiI6MTUyMDQ1ODE0NiwiZXhwIjoxNTIwNDYyMDQ2LCJhaW8iOiJZMk5nWU9DZmREa3M0ZmVYeG9yekMyenYvNnJKQWdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYU8xanFpOUZBVVNuZHJ5Y1p3c0JBQSIsInZlciI6IjEuMCJ9.gd7U1DK79KUMhGQaQB4th8lIYwV_cvokSoCfdLOxtKk9mGFIu4_ZC55_yDXz5SjDd5eMPzKgL40Nn9CeZMHKUfjOz2G8pgPs4PqRPsuXCpPsyA5GDH1YwGIpldG3Ltsx7L4TFj1NN8sMvar2zUmi6Ix9J78VSVjGpsS92CeIBNS-6h_GJnqu-wc1FI8EeEMd-J059KgwhBbAo1L9c1rZconHw9OiIIM11A-tGwfHc_JYt3yksXERDB3tml314B2MYxZR3k4RKMzvcDOTiobo4mK1kJYIVeQKV5QXw7jgiWDIXDJcdEbTWCQNjIi3x1lVN6Td1n1eWhJ-N8Wfj_bdTA"}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:34:06 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgxNDYsIm5iZiI6MTUyMDQ1ODE0NiwiZXhwIjoxNTIwNDYyMDQ2LCJhaW8iOiJZMk5nWU9DZmREa3M0ZmVYeG9yekMyenYvNnJKQWdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYU8xanFpOUZBVVNuZHJ5Y1p3c0JBQSIsInZlciI6IjEuMCJ9.gd7U1DK79KUMhGQaQB4th8lIYwV_cvokSoCfdLOxtKk9mGFIu4_ZC55_yDXz5SjDd5eMPzKgL40Nn9CeZMHKUfjOz2G8pgPs4PqRPsuXCpPsyA5GDH1YwGIpldG3Ltsx7L4TFj1NN8sMvar2zUmi6Ix9J78VSVjGpsS92CeIBNS-6h_GJnqu-wc1FI8EeEMd-J059KgwhBbAo1L9c1rZconHw9OiIIM11A-tGwfHc_JYt3yksXERDB3tml314B2MYxZR3k4RKMzvcDOTiobo4mK1kJYIVeQKV5QXw7jgiWDIXDJcdEbTWCQNjIi3x1lVN6Td1n1eWhJ-N8Wfj_bdTA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14998' + X-Ms-Request-Id: + - d35e47ac-984a-4d14-a353-ee61a2af51b7 + X-Ms-Correlation-Request-Id: + - d35e47ac-984a-4d14-a353-ee61a2af51b7 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213407Z:d35e47ac-984a-4d14-a353-ee61a2af51b7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:34:07 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:34:07 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgxNDYsIm5iZiI6MTUyMDQ1ODE0NiwiZXhwIjoxNTIwNDYyMDQ2LCJhaW8iOiJZMk5nWU9DZmREa3M0ZmVYeG9yekMyenYvNnJKQWdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYU8xanFpOUZBVVNuZHJ5Y1p3c0JBQSIsInZlciI6IjEuMCJ9.gd7U1DK79KUMhGQaQB4th8lIYwV_cvokSoCfdLOxtKk9mGFIu4_ZC55_yDXz5SjDd5eMPzKgL40Nn9CeZMHKUfjOz2G8pgPs4PqRPsuXCpPsyA5GDH1YwGIpldG3Ltsx7L4TFj1NN8sMvar2zUmi6Ix9J78VSVjGpsS92CeIBNS-6h_GJnqu-wc1FI8EeEMd-J059KgwhBbAo1L9c1rZconHw9OiIIM11A-tGwfHc_JYt3yksXERDB3tml314B2MYxZR3k4RKMzvcDOTiobo4mK1kJYIVeQKV5QXw7jgiWDIXDJcdEbTWCQNjIi3x1lVN6Td1n1eWhJ-N8Wfj_bdTA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14965' + X-Ms-Request-Id: + - 31cc729f-6f90-4633-958f-4a1e3b4c4b24 + X-Ms-Correlation-Request-Id: + - 31cc729f-6f90-4633-958f-4a1e3b4c4b24 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213408Z:31cc729f-6f90-4633-958f-4a1e3b4c4b24 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:34:08 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:34:08 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgxNDYsIm5iZiI6MTUyMDQ1ODE0NiwiZXhwIjoxNTIwNDYyMDQ2LCJhaW8iOiJZMk5nWU9DZmREa3M0ZmVYeG9yekMyenYvNnJKQWdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYU8xanFpOUZBVVNuZHJ5Y1p3c0JBQSIsInZlciI6IjEuMCJ9.gd7U1DK79KUMhGQaQB4th8lIYwV_cvokSoCfdLOxtKk9mGFIu4_ZC55_yDXz5SjDd5eMPzKgL40Nn9CeZMHKUfjOz2G8pgPs4PqRPsuXCpPsyA5GDH1YwGIpldG3Ltsx7L4TFj1NN8sMvar2zUmi6Ix9J78VSVjGpsS92CeIBNS-6h_GJnqu-wc1FI8EeEMd-J059KgwhBbAo1L9c1rZconHw9OiIIM11A-tGwfHc_JYt3yksXERDB3tml314B2MYxZR3k4RKMzvcDOTiobo4mK1kJYIVeQKV5QXw7jgiWDIXDJcdEbTWCQNjIi3x1lVN6Td1n1eWhJ-N8Wfj_bdTA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"cf3a0b0d-d596-4f33-bc31-749f92ba4f00" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 0b01929c-ceb2-4ce2-b903-9dcfebb6abd4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14965' + X-Ms-Correlation-Request-Id: + - fcc99ba2-056e-4735-b615-43c46473565c + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213409Z:fcc99ba2-056e-4735-b615-43c46473565c + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:34:09 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"rspec-lb-a670\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670\",\r\n + \ \"etag\": \"W/\\\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"46cb8216-786e-408e-9d86-c0855b357349\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.16.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool\"\r\n + \ }\r\n ],\r\n \"loadBalancerInboundNatRules\": + [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": + {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": + false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/rspec-lb-a\"\r\n + \ },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:34:10 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgxNDYsIm5iZiI6MTUyMDQ1ODE0NiwiZXhwIjoxNTIwNDYyMDQ2LCJhaW8iOiJZMk5nWU9DZmREa3M0ZmVYeG9yekMyenYvNnJKQWdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYU8xanFpOUZBVVNuZHJ5Y1p3c0JBQSIsInZlciI6IjEuMCJ9.gd7U1DK79KUMhGQaQB4th8lIYwV_cvokSoCfdLOxtKk9mGFIu4_ZC55_yDXz5SjDd5eMPzKgL40Nn9CeZMHKUfjOz2G8pgPs4PqRPsuXCpPsyA5GDH1YwGIpldG3Ltsx7L4TFj1NN8sMvar2zUmi6Ix9J78VSVjGpsS92CeIBNS-6h_GJnqu-wc1FI8EeEMd-J059KgwhBbAo1L9c1rZconHw9OiIIM11A-tGwfHc_JYt3yksXERDB3tml314B2MYxZR3k4RKMzvcDOTiobo4mK1kJYIVeQKV5QXw7jgiWDIXDJcdEbTWCQNjIi3x1lVN6Td1n1eWhJ-N8Wfj_bdTA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"1523bcb7-4597-4ae6-bcfc-ba8fc3826026" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - f92d66ef-ec58-4146-9484-730da3d86ee3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14958' + X-Ms-Correlation-Request-Id: + - 3be86ed8-bb5b-4a3b-88c2-517af2b9de59 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213411Z:3be86ed8-bb5b-4a3b-88c2-517af2b9de59 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:34:11 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"rspec-lb-a-nsg\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg\",\r\n + \ \"etag\": \"W/\\\"1523bcb7-4597-4ae6-bcfc-ba8fc3826026\\\"\",\r\n \"type\": + \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"63d15480-8c5a-4e18-9196-c43384932823\",\r\n \"securityRules\": [\r\n + \ {\r\n \"name\": \"default-allow-ssh\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg/securityRules/default-allow-ssh\",\r\n + \ \"etag\": \"W/\\\"1523bcb7-4597-4ae6-bcfc-ba8fc3826026\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n + \ {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg/defaultSecurityRules/AllowVnetInBound\",\r\n + \ \"etag\": \"W/\\\"1523bcb7-4597-4ae6-bcfc-ba8fc3826026\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n + \ \"etag\": \"W/\\\"1523bcb7-4597-4ae6-bcfc-ba8fc3826026\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg/defaultSecurityRules/DenyAllInBound\",\r\n + \ \"etag\": \"W/\\\"1523bcb7-4597-4ae6-bcfc-ba8fc3826026\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n + \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n + \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg/defaultSecurityRules/AllowVnetOutBound\",\r\n + \ \"etag\": \"W/\\\"1523bcb7-4597-4ae6-bcfc-ba8fc3826026\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to all VMs + in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": + \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg/defaultSecurityRules/AllowInternetOutBound\",\r\n + \ \"etag\": \"W/\\\"1523bcb7-4597-4ae6-bcfc-ba8fc3826026\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg/defaultSecurityRules/DenyAllOutBound\",\r\n + \ \"etag\": \"W/\\\"1523bcb7-4597-4ae6-bcfc-ba8fc3826026\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": + [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n + \ ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670\"\r\n + \ }\r\n ]\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:34:12 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgxNDYsIm5iZiI6MTUyMDQ1ODE0NiwiZXhwIjoxNTIwNDYyMDQ2LCJhaW8iOiJZMk5nWU9DZmREa3M0ZmVYeG9yekMyenYvNnJKQWdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYU8xanFpOUZBVVNuZHJ5Y1p3c0JBQSIsInZlciI6IjEuMCJ9.gd7U1DK79KUMhGQaQB4th8lIYwV_cvokSoCfdLOxtKk9mGFIu4_ZC55_yDXz5SjDd5eMPzKgL40Nn9CeZMHKUfjOz2G8pgPs4PqRPsuXCpPsyA5GDH1YwGIpldG3Ltsx7L4TFj1NN8sMvar2zUmi6Ix9J78VSVjGpsS92CeIBNS-6h_GJnqu-wc1FI8EeEMd-J059KgwhBbAo1L9c1rZconHw9OiIIM11A-tGwfHc_JYt3yksXERDB3tml314B2MYxZR3k4RKMzvcDOTiobo4mK1kJYIVeQKV5QXw7jgiWDIXDJcdEbTWCQNjIi3x1lVN6Td1n1eWhJ-N8Wfj_bdTA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"fceae1ac-4620-482a-bc6d-79c867179ae5" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - c29e56ec-4050-4223-acda-8a6b284d87cc + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14956' + X-Ms-Correlation-Request-Id: + - '0606856e-c66c-4cf1-a790-e1ad0c72098f' + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213412Z:0606856e-c66c-4cf1-a790-e1ad0c72098f + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:34:11 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-azure-test1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1\",\r\n + \ \"etag\": \"W/\\\"fceae1ac-4620-482a-bc6d-79c867179ae5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"d74c1e5f-50e4-4c8a-a7fe-78eaddc6b915\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.16.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\",\r\n + \ \"etag\": \"W/\\\"fceae1ac-4620-482a-bc6d-79c867179ae5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.16.0.0/24\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": + [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": + false\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:34:12 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgxNDYsIm5iZiI6MTUyMDQ1ODE0NiwiZXhwIjoxNTIwNDYyMDQ2LCJhaW8iOiJZMk5nWU9DZmREa3M0ZmVYeG9yekMyenYvNnJKQWdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYU8xanFpOUZBVVNuZHJ5Y1p3c0JBQSIsInZlciI6IjEuMCJ9.gd7U1DK79KUMhGQaQB4th8lIYwV_cvokSoCfdLOxtKk9mGFIu4_ZC55_yDXz5SjDd5eMPzKgL40Nn9CeZMHKUfjOz2G8pgPs4PqRPsuXCpPsyA5GDH1YwGIpldG3Ltsx7L4TFj1NN8sMvar2zUmi6Ix9J78VSVjGpsS92CeIBNS-6h_GJnqu-wc1FI8EeEMd-J059KgwhBbAo1L9c1rZconHw9OiIIM11A-tGwfHc_JYt3yksXERDB3tml314B2MYxZR3k4RKMzvcDOTiobo4mK1kJYIVeQKV5QXw7jgiWDIXDJcdEbTWCQNjIi3x1lVN6Td1n1eWhJ-N8Wfj_bdTA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"cf3a0b0d-d596-4f33-bc31-749f92ba4f00" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 0a822ad8-d3b9-403b-839b-a23505cae768 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14964' + X-Ms-Correlation-Request-Id: + - 63736d4e-8fe3-44f1-9b01-40002b593212 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213414Z:63736d4e-8fe3-44f1-9b01-40002b593212 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:34:14 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"rspec-lb-a670\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670\",\r\n + \ \"etag\": \"W/\\\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"46cb8216-786e-408e-9d86-c0855b357349\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.16.0.6\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool\"\r\n + \ }\r\n ],\r\n \"loadBalancerInboundNatRules\": + [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": + {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": + false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/rspec-lb-a\"\r\n + \ },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:34:14 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgxNDYsIm5iZiI6MTUyMDQ1ODE0NiwiZXhwIjoxNTIwNDYyMDQ2LCJhaW8iOiJZMk5nWU9DZmREa3M0ZmVYeG9yekMyenYvNnJKQWdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYU8xanFpOUZBVVNuZHJ5Y1p3c0JBQSIsInZlciI6IjEuMCJ9.gd7U1DK79KUMhGQaQB4th8lIYwV_cvokSoCfdLOxtKk9mGFIu4_ZC55_yDXz5SjDd5eMPzKgL40Nn9CeZMHKUfjOz2G8pgPs4PqRPsuXCpPsyA5GDH1YwGIpldG3Ltsx7L4TFj1NN8sMvar2zUmi6Ix9J78VSVjGpsS92CeIBNS-6h_GJnqu-wc1FI8EeEMd-J059KgwhBbAo1L9c1rZconHw9OiIIM11A-tGwfHc_JYt3yksXERDB3tml314B2MYxZR3k4RKMzvcDOTiobo4mK1kJYIVeQKV5QXw7jgiWDIXDJcdEbTWCQNjIi3x1lVN6Td1n1eWhJ-N8Wfj_bdTA + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"3ba30997-7d2f-470c-96f6-301158e93b7c" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - a5426730-2854-4f9f-96fc-29d1e4e4648a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14964' + X-Ms-Correlation-Request-Id: + - 9bdc7412-7e56-441a-8901-a078f82d9286 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213415Z:9bdc7412-7e56-441a-8901-a078f82d9286 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:34:14 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"rspec-lb-a-ip\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip\",\r\n + \ \"etag\": \"W/\\\"3ba30997-7d2f-470c-96f6-301158e93b7c\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"3c605f75-23c0-46ab-ba2b-6fd4430140fd\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:34:15 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/networkSecurityGroups_write_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/networkSecurityGroups_write_EndRequest.yml new file mode 100644 index 00000000..71a43c95 --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/networkSecurityGroups_write_EndRequest.yml @@ -0,0 +1,2464 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - 4695076b-5e00-4e23-abe7-e4e551a20000 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzMAIngGWeX0FJccHfno-8D3xUJHb1wNbHDZFmXzC657ke-OrY7S4AOK2jxu7geRHIOZsus8HNyp-lNt3Df5yDRipIHzZscmtkB9_g67kOss1ZQbw3a5Y-iiRost0em3DFKTvD8URUtHG9ZP-7IP2Ta9FyThEV7xYqCIDUdWDWyC0gAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=002; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 20:42:33 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"0","expires_on":"1520458954","not_before":"1520455054","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNTQsIm5iZiI6MTUyMDQ1NTA1NCwiZXhwIjoxNTIwNDU4OTU0LCJhaW8iOiJZMk5nWUhnU3QvT29SR0tTa2t5aS80UzNIY3JMQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYXdlVlJnQmVJMDZyNS1UbFVhSUFBQSIsInZlciI6IjEuMCJ9.Ox0vraqdbFa9pNKPgAgpL6szLp6mpNRFrg7C_XV1cKRol2ZC8L3QuYkT2BqZqEr2ptFjiuQyueges5t7x4g4Nr-4qDpapEqyVKwZa_AApI-DgUbMDgy_9H9Kb3OtkTnNGUEdGkuSXhCgfq96nS1WHsRiEsWLqsD0gd7KztQq1w7uCYz9cA8ZjLgYwa6y-Q60g65xd9PbZtxWV-Xsr5NCwVEA_4aKw6e0VYOn_CejUqZk0y7auJ9V1MLX7NaxSQUXua7G61AgbAiST8ivYIqrSMxb9sHdD_3zTBv-A95dvx2rlmq0ovANi03UGEN1Potlj0rr0nCk_HXC0bxFWju70Q"}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:34 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNTQsIm5iZiI6MTUyMDQ1NTA1NCwiZXhwIjoxNTIwNDU4OTU0LCJhaW8iOiJZMk5nWUhnU3QvT29SR0tTa2t5aS80UzNIY3JMQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYXdlVlJnQmVJMDZyNS1UbFVhSUFBQSIsInZlciI6IjEuMCJ9.Ox0vraqdbFa9pNKPgAgpL6szLp6mpNRFrg7C_XV1cKRol2ZC8L3QuYkT2BqZqEr2ptFjiuQyueges5t7x4g4Nr-4qDpapEqyVKwZa_AApI-DgUbMDgy_9H9Kb3OtkTnNGUEdGkuSXhCgfq96nS1WHsRiEsWLqsD0gd7KztQq1w7uCYz9cA8ZjLgYwa6y-Q60g65xd9PbZtxWV-Xsr5NCwVEA_4aKw6e0VYOn_CejUqZk0y7auJ9V1MLX7NaxSQUXua7G61AgbAiST8ivYIqrSMxb9sHdD_3zTBv-A95dvx2rlmq0ovANi03UGEN1Potlj0rr0nCk_HXC0bxFWju70Q + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14998' + X-Ms-Request-Id: + - 2b45dbf9-c0f4-4c84-a69a-11b2dbb42ca1 + X-Ms-Correlation-Request-Id: + - 2b45dbf9-c0f4-4c84-a69a-11b2dbb42ca1 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204239Z:2b45dbf9-c0f4-4c84-a69a-11b2dbb42ca1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:39 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:39 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNTQsIm5iZiI6MTUyMDQ1NTA1NCwiZXhwIjoxNTIwNDU4OTU0LCJhaW8iOiJZMk5nWUhnU3QvT29SR0tTa2t5aS80UzNIY3JMQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYXdlVlJnQmVJMDZyNS1UbFVhSUFBQSIsInZlciI6IjEuMCJ9.Ox0vraqdbFa9pNKPgAgpL6szLp6mpNRFrg7C_XV1cKRol2ZC8L3QuYkT2BqZqEr2ptFjiuQyueges5t7x4g4Nr-4qDpapEqyVKwZa_AApI-DgUbMDgy_9H9Kb3OtkTnNGUEdGkuSXhCgfq96nS1WHsRiEsWLqsD0gd7KztQq1w7uCYz9cA8ZjLgYwa6y-Q60g65xd9PbZtxWV-Xsr5NCwVEA_4aKw6e0VYOn_CejUqZk0y7auJ9V1MLX7NaxSQUXua7G61AgbAiST8ivYIqrSMxb9sHdD_3zTBv-A95dvx2rlmq0ovANi03UGEN1Potlj0rr0nCk_HXC0bxFWju70Q + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14973' + X-Ms-Request-Id: + - 891559ce-08dd-40d0-bb52-d55949dcad15 + X-Ms-Correlation-Request-Id: + - 891559ce-08dd-40d0-bb52-d55949dcad15 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204241Z:891559ce-08dd-40d0-bb52-d55949dcad15 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:40 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:42 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwNTQsIm5iZiI6MTUyMDQ1NTA1NCwiZXhwIjoxNTIwNDU4OTU0LCJhaW8iOiJZMk5nWUhnU3QvT29SR0tTa2t5aS80UzNIY3JMQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiYXdlVlJnQmVJMDZyNS1UbFVhSUFBQSIsInZlciI6IjEuMCJ9.Ox0vraqdbFa9pNKPgAgpL6szLp6mpNRFrg7C_XV1cKRol2ZC8L3QuYkT2BqZqEr2ptFjiuQyueges5t7x4g4Nr-4qDpapEqyVKwZa_AApI-DgUbMDgy_9H9Kb3OtkTnNGUEdGkuSXhCgfq96nS1WHsRiEsWLqsD0gd7KztQq1w7uCYz9cA8ZjLgYwa6y-Q60g65xd9PbZtxWV-Xsr5NCwVEA_4aKw6e0VYOn_CejUqZk0y7auJ9V1MLX7NaxSQUXua7G61AgbAiST8ivYIqrSMxb9sHdD_3zTBv-A95dvx2rlmq0ovANi03UGEN1Potlj0rr0nCk_HXC0bxFWju70Q + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"7525677a-4a22-4f56-8cd8-d5ca71fcc427" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - ceb3fbb6-517d-4ea9-ad99-07be8c96e7c4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14978' + X-Ms-Correlation-Request-Id: + - 65578cc0-e7eb-440a-af03-90a8efcc9f5f + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204242Z:65578cc0-e7eb-440a-af03-90a8efcc9f5f + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:42:42 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"ladas_test\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test\",\r\n + \ \"etag\": \"W/\\\"7525677a-4a22-4f56-8cd8-d5ca71fcc427\\\"\",\r\n \"type\": + \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"d2311c08-4e89-458b-9bf1-3549c8c51c4d\",\r\n \"securityRules\": [],\r\n + \ \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test/defaultSecurityRules/AllowVnetInBound\",\r\n + \ \"etag\": \"W/\\\"7525677a-4a22-4f56-8cd8-d5ca71fcc427\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n + \ \"etag\": \"W/\\\"7525677a-4a22-4f56-8cd8-d5ca71fcc427\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test/defaultSecurityRules/DenyAllInBound\",\r\n + \ \"etag\": \"W/\\\"7525677a-4a22-4f56-8cd8-d5ca71fcc427\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n + \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n + \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test/defaultSecurityRules/AllowVnetOutBound\",\r\n + \ \"etag\": \"W/\\\"7525677a-4a22-4f56-8cd8-d5ca71fcc427\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to all VMs + in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": + \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test/defaultSecurityRules/AllowInternetOutBound\",\r\n + \ \"etag\": \"W/\\\"7525677a-4a22-4f56-8cd8-d5ca71fcc427\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/ladas_test/defaultSecurityRules/DenyAllOutBound\",\r\n + \ \"etag\": \"W/\\\"7525677a-4a22-4f56-8cd8-d5ca71fcc427\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": + [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n + \ ]\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 20:42:43 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/publicIPAddresses_write_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/publicIPAddresses_write_EndRequest.yml new file mode 100644 index 00000000..96df2356 --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/publicIPAddresses_write_EndRequest.yml @@ -0,0 +1,2400 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - 7b544816-2907-4b46-859b-a0e40e9a0000 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzJgNhjLeFfi4vVglaV4ssWbIKhP2BPmKGHq8c-FR5Sqh01esL2q7JY485WnrO1ks6mU32tAXeN1A2xW8SHFY54ZJvjaKklVS7xXzagjAII5vPkAllJP1bEkbSdosB6aB9aG3LnrghvQItOCr0kBRnz-f6bGshBP20ZkmyaDwQESAgAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=006; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 20:43:17 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"0","expires_on":"1520458997","not_before":"1520455097","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwOTcsIm5iZiI6MTUyMDQ1NTA5NywiZXhwIjoxNTIwNDU4OTk3LCJhaW8iOiJZMk5nWUtnVTcxZFYzaEY3dGlIOFI4YzcyODZyQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiRmtoVWV3Y3BSa3VGbTZEa0Rwb0FBQSIsInZlciI6IjEuMCJ9.Esk99JDcPacLua8f-GCZ4z1nqA_pD7xR6RM3N0aUlU-sg3NlWThiFl8ETEh3M9juqcBBwAn3mVwlUauFQiBqGIUnUVmQhFNHEFNlBDQ0ZHrK373orOLz3keXFXW2AcaQ0XivhA9HCjon8gVScNc2aGmPrlA3ZLPO5sHKs4AurJROxZow-M_FZB9HNNhX345vFI2mXBQJlr6qtwrSSxuRcg73Ms6wE4necXsX7Kwb-w7Ik3QRmipQd0WT4zGhQDjJGFt54pPTkLyKm6gFg3hCCFT8IqMIhD7r87RiRROW_xaUdN4HL__8BMA4HRaTl6sak6taonPXHqZKENQVHFpulQ"}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:18 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwOTcsIm5iZiI6MTUyMDQ1NTA5NywiZXhwIjoxNTIwNDU4OTk3LCJhaW8iOiJZMk5nWUtnVTcxZFYzaEY3dGlIOFI4YzcyODZyQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiRmtoVWV3Y3BSa3VGbTZEa0Rwb0FBQSIsInZlciI6IjEuMCJ9.Esk99JDcPacLua8f-GCZ4z1nqA_pD7xR6RM3N0aUlU-sg3NlWThiFl8ETEh3M9juqcBBwAn3mVwlUauFQiBqGIUnUVmQhFNHEFNlBDQ0ZHrK373orOLz3keXFXW2AcaQ0XivhA9HCjon8gVScNc2aGmPrlA3ZLPO5sHKs4AurJROxZow-M_FZB9HNNhX345vFI2mXBQJlr6qtwrSSxuRcg73Ms6wE4necXsX7Kwb-w7Ik3QRmipQd0WT4zGhQDjJGFt54pPTkLyKm6gFg3hCCFT8IqMIhD7r87RiRROW_xaUdN4HL__8BMA4HRaTl6sak6taonPXHqZKENQVHFpulQ + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14997' + X-Ms-Request-Id: + - 51b0ad96-2c44-42ad-90d4-685bd1a78f41 + X-Ms-Correlation-Request-Id: + - 51b0ad96-2c44-42ad-90d4-685bd1a78f41 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204318Z:51b0ad96-2c44-42ad-90d4-685bd1a78f41 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:17 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:18 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwOTcsIm5iZiI6MTUyMDQ1NTA5NywiZXhwIjoxNTIwNDU4OTk3LCJhaW8iOiJZMk5nWUtnVTcxZFYzaEY3dGlIOFI4YzcyODZyQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiRmtoVWV3Y3BSa3VGbTZEa0Rwb0FBQSIsInZlciI6IjEuMCJ9.Esk99JDcPacLua8f-GCZ4z1nqA_pD7xR6RM3N0aUlU-sg3NlWThiFl8ETEh3M9juqcBBwAn3mVwlUauFQiBqGIUnUVmQhFNHEFNlBDQ0ZHrK373orOLz3keXFXW2AcaQ0XivhA9HCjon8gVScNc2aGmPrlA3ZLPO5sHKs4AurJROxZow-M_FZB9HNNhX345vFI2mXBQJlr6qtwrSSxuRcg73Ms6wE4necXsX7Kwb-w7Ik3QRmipQd0WT4zGhQDjJGFt54pPTkLyKm6gFg3hCCFT8IqMIhD7r87RiRROW_xaUdN4HL__8BMA4HRaTl6sak6taonPXHqZKENQVHFpulQ + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14971' + X-Ms-Request-Id: + - 2e5de6b1-2ab3-46ff-9e3f-53142f00475a + X-Ms-Correlation-Request-Id: + - 2e5de6b1-2ab3-46ff-9e3f-53142f00475a + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204319Z:2e5de6b1-2ab3-46ff-9e3f-53142f00475a + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:18 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:20 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/ladas_test?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUwOTcsIm5iZiI6MTUyMDQ1NTA5NywiZXhwIjoxNTIwNDU4OTk3LCJhaW8iOiJZMk5nWUtnVTcxZFYzaEY3dGlIOFI4YzcyODZyQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiRmtoVWV3Y3BSa3VGbTZEa0Rwb0FBQSIsInZlciI6IjEuMCJ9.Esk99JDcPacLua8f-GCZ4z1nqA_pD7xR6RM3N0aUlU-sg3NlWThiFl8ETEh3M9juqcBBwAn3mVwlUauFQiBqGIUnUVmQhFNHEFNlBDQ0ZHrK373orOLz3keXFXW2AcaQ0XivhA9HCjon8gVScNc2aGmPrlA3ZLPO5sHKs4AurJROxZow-M_FZB9HNNhX345vFI2mXBQJlr6qtwrSSxuRcg73Ms6wE4necXsX7Kwb-w7Ik3QRmipQd0WT4zGhQDjJGFt54pPTkLyKm6gFg3hCCFT8IqMIhD7r87RiRROW_xaUdN4HL__8BMA4HRaTl6sak6taonPXHqZKENQVHFpulQ + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"32e21623-9a1b-4c40-80f4-6a350aa237a7" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 2b6f4d9f-399e-4479-98d2-740b040ec3df + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14977' + X-Ms-Correlation-Request-Id: + - 83d53bd6-1413-42f5-9d8f-d31ab5273e48 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204320Z:83d53bd6-1413-42f5-9d8f-d31ab5273e48 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:20 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"ladas_test\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/ladas_test\",\r\n + \ \"etag\": \"W/\\\"32e21623-9a1b-4c40-80f4-6a350aa237a7\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"3daa5f66-5a01-4242-b95b-c4e0ee8f0c36\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:21 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_deallocate_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_deallocate_EndRequest.yml new file mode 100644 index 00000000..c56c0240 --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_deallocate_EndRequest.yml @@ -0,0 +1,3959 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - 22e8668c-2e3d-4594-a1de-2e65bcfd0000 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzaW12VBTBSQIDIgdhiboqVpe8GtXhoE76kqTJ0J7AFiKnAeI9qo78GdDehKdrUUG2CphIlI6roZhT_mfKCxpELF8poipR3raxqGK4OCCr1fFA0NOJ5fPIyEzEKRGoYS7m2i4wkCM43ZC92fXgGff9x7YV88kOJJNxeob9uTo9TLwgAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=006; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 21:39:14 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"0","expires_on":"1520462354","not_before":"1520458454","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g"}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:14 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14997' + X-Ms-Request-Id: + - 8523b5e9-a4f6-4770-9adb-6790e24de22c + X-Ms-Correlation-Request-Id: + - 8523b5e9-a4f6-4770-9adb-6790e24de22c + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213914Z:8523b5e9-a4f6-4770-9adb-6790e24de22c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:13 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:15 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14954' + X-Ms-Request-Id: + - 950aa579-18ac-4531-9444-758e6af7bc90 + X-Ms-Correlation-Request-Id: + - 950aa579-18ac-4531-9444-758e6af7bc90 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213916Z:950aa579-18ac-4531-9444-758e6af7bc90 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:16 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:16 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4745,Microsoft.Compute/LowCostGet30Min;37886 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 7e88397b-ac56-4eaa-9cb8-f543f9f1b97d + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14959' + X-Ms-Correlation-Request-Id: + - d65f15a3-0aa5-4619-b5e5-848ebff847d3 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213917Z:d65f15a3-0aa5-4619-b5e5-848ebff847d3 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:17 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"properties\": {\r\n \"vmId\": \"03e8467b-baab-4867-9cc4-157336b7e2e4\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Basic_A0\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7.2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"miq-test-rhel1\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"miq-test-rhel1\",\r\n + \ \"adminUsername\": \"dberger\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true,\r\n \"storageUri\": \"https://miqazuretest18686.blob.core.windows.net/\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": + \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"settings\": {\"xmlCfg\":\"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxEaWFnbm9zdGljSW5mcmFzdHJ1Y3R1cmVMb2dzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIiBzY2hlZHVsZWRUcmFuc2ZlckxvZ0xldmVsRmlsdGVyPSJXYXJuaW5nIi8+PFBlcmZvcm1hbmNlQ291bnRlcnMgc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQnl0ZXMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGVyY2VudEF2YWlsYWJsZU1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iTWVtb3J5IHVzZWQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgcGVyY2VudGFnZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHVzZWQgYnkgY2FjaGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50UGVyU2Vjb25kIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFnZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2UgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1dyaXR0ZW5QZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2Ugd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iU3dhcCBhdmFpbGFibGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50QXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlN3YXAgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgaWRsZSB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iUGVyY2VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkNQVSB1c2VyIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50TmljZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIG5pY2UgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcml2aWxlZ2VkVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgcHJpdmlsZWdlZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIGludGVycnVwdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIERQQyB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFByb2Nlc3NvclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIHBlcmNlbnRhZ2UgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgSU8gd2FpdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xSZWFkQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCBndWVzdCBPUyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGUgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xUcmFuc2ZlcnNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXJzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcUmVhZHNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVdyaXRlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlNlY29uZHMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJEaXNrIHdyaXRlIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xBdmVyYWdlVHJhbnNmZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXIgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcXVldWUgbGVuZ3RoIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgb3V0IGd1ZXN0IE9TIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgaW4gZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1RyYW5zbWl0dGVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHNlbnQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHJlY2VpdmVkIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxSeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyByZWNlaXZlZCBlcnJvcnMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxUeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyBzZW50IGVycm9ycyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgY29sbGlzaW9ucyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48L1BlcmZvcm1hbmNlQ291bnRlcnM+PE1ldHJpY3MgcmVzb3VyY2VJZD0iL3N1YnNjcmlwdGlvbnMvMjU4NmM2NGItMzhiNC00NTI3LWExNDAtMDEyZDQ5ZGZjMDJjL3Jlc291cmNlR3JvdXBzL21pcS1henVyZS10ZXN0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL21pcS10ZXN0LXJoZWwxIj48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMUgiLz48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iLz48L01ldHJpY3M+PC9EaWFnbm9zdGljTW9uaXRvckNvbmZpZ3VyYXRpb24+PC9XYWRDZmc+\",\"StorageAccount\":\"miqazuretest18686\"},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": + \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\"\r\n }\r\n + \ ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": + \"eastus\",\r\n \"tags\": {\r\n \"Shutdown\": \"true\"\r\n },\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\",\r\n + \ \"name\": \"miq-test-rhel1\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:18 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"f006e6f9-0292-42cd-99fc-f72f194553c1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 816068b0-031c-4aeb-b84a-12dfaa4da426 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14956' + X-Ms-Correlation-Request-Id: + - 5274552a-40c7-4cde-bfee-e8bbcc753f8b + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213918Z:5274552a-40c7-4cde-bfee-e8bbcc753f8b + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:18 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1390\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"98853f48-2806-4065-be57-cf9159550440\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.16.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-10-EB-AB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\"\r\n + \ },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:19 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1?api-version=2017-08-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14964' + X-Ms-Request-Id: + - c7090559-f581-4812-a0d9-1252cfd9b33e + X-Ms-Correlation-Request-Id: + - c7090559-f581-4812-a0d9-1252cfd9b33e + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213919Z:c7090559-f581-4812-a0d9-1252cfd9b33e + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:19 GMT + Content-Length: + - '183' + body: + encoding: ASCII-8BIT + string: '{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1","name":"miq-azure-test1","location":"eastus","properties":{"provisioningState":"Succeeded"}}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:19 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute/locations/eastus/vmSizes?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4744,Microsoft.Compute/LowCostGet30Min;37885 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 82ec7ed1-32b3-45c2-add1-3a0839d85b16 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14944' + X-Ms-Correlation-Request-Id: + - ae7ed151-4dc5-4e3d-8005-bb8d5070f734 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213920Z:ae7ed151-4dc5-4e3d-8005-bb8d5070f734 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:19 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_B1ms\",\r\n + \ \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_B1s\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2ms\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2s\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_B4ms\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_B8ms\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11-1_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12-1_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12-2_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2s_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 65636,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1024000,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H8m\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1024000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16m\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16r\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16mr\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV6\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV12\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV24\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6s_v2\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12s_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24rs_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24s_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24r\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6s_v3\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12s_v3\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24rs_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24s_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"numberOfCores\": + 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 589824,\r\n \"memoryInMB\": 147456,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND6s\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND12s\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND24rs\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND24s\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_A10\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A11\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ }\r\n ]\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:20 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4743,Microsoft.Compute/LowCostGet30Min;37884 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 853cd941-cbe4-4663-8404-ca930cb6bf90 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14957' + X-Ms-Correlation-Request-Id: + - 4e81dc05-9851-4e9f-b63d-8da5b247abc2 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213929Z:4e81dc05-9851-4e9f-b63d-8da5b247abc2 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:29 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"properties\": {\r\n \"vmId\": \"03e8467b-baab-4867-9cc4-157336b7e2e4\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Basic_A0\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7.2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"miq-test-rhel1\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"miq-test-rhel1\",\r\n + \ \"adminUsername\": \"dberger\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true,\r\n \"storageUri\": \"https://miqazuretest18686.blob.core.windows.net/\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": + \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"settings\": {\"xmlCfg\":\"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxEaWFnbm9zdGljSW5mcmFzdHJ1Y3R1cmVMb2dzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIiBzY2hlZHVsZWRUcmFuc2ZlckxvZ0xldmVsRmlsdGVyPSJXYXJuaW5nIi8+PFBlcmZvcm1hbmNlQ291bnRlcnMgc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQnl0ZXMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGVyY2VudEF2YWlsYWJsZU1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iTWVtb3J5IHVzZWQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgcGVyY2VudGFnZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHVzZWQgYnkgY2FjaGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50UGVyU2Vjb25kIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFnZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2UgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1dyaXR0ZW5QZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2Ugd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iU3dhcCBhdmFpbGFibGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50QXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlN3YXAgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgaWRsZSB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iUGVyY2VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkNQVSB1c2VyIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50TmljZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIG5pY2UgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcml2aWxlZ2VkVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgcHJpdmlsZWdlZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIGludGVycnVwdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIERQQyB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFByb2Nlc3NvclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIHBlcmNlbnRhZ2UgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgSU8gd2FpdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xSZWFkQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCBndWVzdCBPUyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGUgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xUcmFuc2ZlcnNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXJzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcUmVhZHNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVdyaXRlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlNlY29uZHMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJEaXNrIHdyaXRlIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xBdmVyYWdlVHJhbnNmZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXIgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcXVldWUgbGVuZ3RoIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgb3V0IGd1ZXN0IE9TIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgaW4gZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1RyYW5zbWl0dGVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHNlbnQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHJlY2VpdmVkIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxSeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyByZWNlaXZlZCBlcnJvcnMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxUeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyBzZW50IGVycm9ycyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgY29sbGlzaW9ucyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48L1BlcmZvcm1hbmNlQ291bnRlcnM+PE1ldHJpY3MgcmVzb3VyY2VJZD0iL3N1YnNjcmlwdGlvbnMvMjU4NmM2NGItMzhiNC00NTI3LWExNDAtMDEyZDQ5ZGZjMDJjL3Jlc291cmNlR3JvdXBzL21pcS1henVyZS10ZXN0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL21pcS10ZXN0LXJoZWwxIj48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMUgiLz48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iLz48L01ldHJpY3M+PC9EaWFnbm9zdGljTW9uaXRvckNvbmZpZ3VyYXRpb24+PC9XYWRDZmc+\",\"StorageAccount\":\"miqazuretest18686\"},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": + \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\"\r\n }\r\n + \ ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": + \"eastus\",\r\n \"tags\": {\r\n \"Shutdown\": \"true\"\r\n },\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\",\r\n + \ \"name\": \"miq-test-rhel1\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:30 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/instanceView?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/GetInstanceView3Min;4767,Microsoft.Compute/GetInstanceView30Min;23822 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 372b44b9-535a-43ca-aa25-a13db040a1ce + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14959' + X-Ms-Correlation-Request-Id: + - 48f5f247-5e76-4e6c-9e2e-070872f45cce + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213941Z:48f5f247-5e76-4e6c-9e2e-070872f45cce + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:41 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.16\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n + \ \"time\": \"2018-03-07T21:39:12+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.3.9027\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"miq-test-rhel1\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2018-01-17T18:00:29.9011002+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": + \"https://miqazuretest18686.blob.core.windows.net/bootdiagnostics-miqtestrh-03e8467b-baab-4867-9cc4-157336b7e2e4/miq-test-rhel1.03e8467b-baab-4867-9cc4-157336b7e2e4.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://miqazuretest18686.blob.core.windows.net/bootdiagnostics-miqtestrh-03e8467b-baab-4867-9cc4-157336b7e2e4/miq-test-rhel1.03e8467b-baab-4867-9cc4-157336b7e2e4.serialconsole.log\"\r\n + \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": + \"2.3.9027\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T18:02:26.9167163+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:42 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network/networkInterfaces?api-version=2017-11-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - a6179d36-4a84-4623-90ff-f2b748fc9aeb + X-Ms-Correlation-Request-Id: + - a6179d36-4a84-4623-90ff-f2b748fc9aeb + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213943Z:a6179d36-4a84-4623-90ff-f2b748fc9aeb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:43 GMT + Content-Length: + - '31614' + body: + encoding: ASCII-8BIT + string: '{"value":[{"name":"miqazure-coreos1235","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235","etag":"W/\"4a6546ab-a4c0-4d27-bccd-f6ebf3c405a2\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"fb0a5e60-a6c2-4bb8-a2f5-0c16216a49b0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235/ipConfigurations/ipconfig1","etag":"W/\"4a6546ab-a4c0-4d27-bccd-f6ebf3c405a2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.20.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/publicIPAddresses/miqazure-coreos1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/virtualNetworks/miq-azure-test3/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"rliadcyr3l1elbnsw4rabxqg1f.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkSecurityGroups/miqazure-coreos1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Compute/virtualMachines/miqazure-coreos1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"dbergerprov1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1","etag":"W/\"074dd836-918c-4e40-a118-94f0d366e175\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"ecdcd2f0-91bb-4c40-91cd-a3d76fc5e455","ipConfigurations":[{"name":"dbergerprov1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1","etag":"W/\"074dd836-918c-4e40-a118-94f0d366e175\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.9","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/dbergerprov1-publicIp"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST4/providers/Microsoft.Compute/virtualMachines/dbergerprov1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-rhel1390","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390","etag":"W/\"f006e6f9-0292-42cd-99fc-f72f194553c1\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"98853f48-2806-4065-be57-cf9159550440","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1","etag":"W/\"f006e6f9-0292-42cd-99fc-f72f194553c1\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-EB-AB","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-ubuntu1989","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989","etag":"W/\"64e07488-15a2-4cec-b84a-6fd5ef04323c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"134a6669-ac4a-4d08-a0db-387bc4c49537","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989/ipConfigurations/ipconfig1","etag":"W/\"64e07488-15a2-4cec-b84a-6fd5ef04323c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.17.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-ubuntu1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miqazuretest18687/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-ubuntu1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-ubuntu1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-win12610","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610","etag":"W/\"dd925ef5-33d1-402c-a0f4-18c78c2641f4\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"5c2eef2c-0b36-4277-a940-957ed4d13be0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610/ipConfigurations/ipconfig1","etag":"W/\"dd925ef5-33d1-402c-a0f4-18c78c2641f4\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.18.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-win12"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miqazuretest19881/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-win12"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-win12"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-winimg241","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241","etag":"W/\"4a17a745-16a9-42d9-88c9-17a518959525\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"8ed2f3b0-4a4b-49ae-9f1d-ff7890dbd396","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1","etag":"W/\"4a17a745-16a9-42d9-88c9-17a518959525\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.7","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqtestwinimg6202"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miqtestwinimg3696"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-winimg"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-centos1611","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611","etag":"W/\"26031ef6-bb55-4019-8185-2dd1edcb207c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f1760e49-9853-4fdc-acfc-4ea232b9ed76","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1","etag":"W/\"26031ef6-bb55-4019-8185-2dd1edcb207c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqazure-centos1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miqazure-centos1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miqazure-centos1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1","etag":"W/\"3a72d0c3-bfda-4da5-a61b-e8c33e43de79\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"23d804a8-b623-49e7-9c8d-1d64245bef1e","ipConfigurations":[{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1","etag":"W/\"3a72d0c3-bfda-4da5-a61b-e8c33e43de79\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.8","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqmismatch1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Compute/virtualMachines/miqmismatch1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"rspec-lb-a670","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670","etag":"W/\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"46cb8216-786e-408e-9d86-c0855b357349","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1","etag":"W/\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/rspec-lb-a"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"rspec-lb-b843","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843","etag":"W/\"76aabe0c-8678-43f0-81a5-2f15784a4b99\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3ef6fa01-ac34-43a1-8fd7-67c706b4d8ef","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1","etag":"W/\"76aabe0c-8678-43f0-81a5-2f15784a4b99\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.11","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-b-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-b-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/rspec-lb-b"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"spec0deply1nic0","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic0","etag":"W/\"b817491c-aab8-4aab-b41d-b07bfffa5639\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"80ad9866-071d-4e3f-91d0-d47954eccee0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic0/ipConfigurations/ipconfig1","etag":"W/\"b817491c-aab8-4aab-b41d-b07bfffa5639\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/spec0deply1vnet/subnets/Subnet-1"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/backendAddressPools/BackendPool1"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/inboundNatRules/RDP-VM0"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/spec0deply1vm0"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"spec0deply1nic1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic1","etag":"W/\"2ec58a0b-4c03-4d0a-b788-9daffd54e7b2\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"57bbf7aa-d6c4-4f56-8f6a-089d15334221","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic1/ipConfigurations/ipconfig1","etag":"W/\"2ec58a0b-4c03-4d0a-b788-9daffd54e7b2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/spec0deply1vnet/subnets/Subnet-1"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/backendAddressPools/BackendPool1"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/inboundNatRules/RDP-VM1"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/spec0deply1vm1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqmismatch2656","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqmismatch2656","etag":"W/\"fef6a836-2802-4897-90c3-b3d71f133384\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"969dde6c-73c0-4340-877d-2b5fe2060026","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqmismatch2656/ipConfigurations/ipconfig1","etag":"W/\"fef6a836-2802-4897-90c3-b3d71f133384\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"172.23.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/virtualNetworks/miqazuretest33606/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkSecurityGroups/miqmismatch2-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Compute/virtualMachines/miqmismatch2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-linux-manag944","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944","etag":"W/\"b6339880-8ead-4c9e-b5c0-f38c4f8612d5\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"c5e8b90e-5a78-49b0-b224-b70ed3fb45e5","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944/ipConfigurations/ipconfig1","etag":"W/\"b6339880-8ead-4c9e-b5c0-f38c4f8612d5\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"172.25.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqazure-linux-managed-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miq-azure-test2/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkSecurityGroups/miqazure-linux-managed-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Compute/virtualMachines/miqazure-linux-managed"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"jf-metrics-2751","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751","etag":"W/\"c5f6f02a-b17c-4f34-882b-11c7adef0b44\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"207a58d3-f18d-4dab-8168-919877297a52","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751/ipConfigurations/ipconfig1","etag":"W/\"c5f6f02a-b17c-4f34-882b-11c7adef0b44\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.7","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-2"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/jf-metrics-2"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/jf-metrics-2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"jf-metrics-3421","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421","etag":"W/\"0b6f160b-ad10-48f8-9d0c-657193bb823f\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"b8b345e8-a353-4700-992e-be48a717b4e2","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421/ipConfigurations/ipconfig1","etag":"W/\"0b6f160b-ad10-48f8-9d0c-657193bb823f\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.8","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-3"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/jf-metrics-3"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/jf-metrics-3"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-oraclelinux310","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310","etag":"W/\"54cd4fe1-3ed5-4a8c-bc8d-527679c7a631\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"6a3fc1d7-4532-4ca0-b5c2-546cc8f7f313","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310/ipConfigurations/ipconfig1","etag":"W/\"54cd4fe1-3ed5-4a8c-bc8d-527679c7a631\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/miqazure-sharednsg1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/miqazure-oraclelinux1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-oraclelinux993","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993","etag":"W/\"a9432274-7b40-4eb3-a64f-a04267a423ff\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"75d8ed14-e0ae-4d84-99f6-e3f43d073e76","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993/ipConfigurations/ipconfig1","etag":"W/\"a9432274-7b40-4eb3-a64f-a04267a423ff\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux2"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/miqazure-sharednsg1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/miqazure-oraclelinux2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:44 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network/publicIPAddresses?api-version=2017-11-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - f5b2e84a-e490-4222-ae20-0170c0b2158d + X-Ms-Correlation-Request-Id: + - f5b2e84a-e490-4222-ae20-0170c0b2158d + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213946Z:f5b2e84a-e490-4222-ae20-0170c0b2158d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:46 GMT + Content-Length: + - '13978' + body: + encoding: ASCII-8BIT + string: '{"value":[{"name":"miqazure-coreos1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/publicIPAddresses/miqazure-coreos1","etag":"W/\"da64b64b-a755-4389-a2f3-5cba32f18c06\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"28617ed1-0270-4b39-873a-c3b48b3deef1","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"dbergerprov1-publicIp","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/dbergerprov1-publicIp","etag":"W/\"3d984c69-3f35-41ce-bdfc-8d207053a6a9\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"eb0e8804-e169-44ac-bb47-0929370977d2","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"ladas_test","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/ladas_test","etag":"W/\"32e21623-9a1b-4c40-80f4-6a350aa237a7\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3daa5f66-5a01-4242-b95b-c4e0ee8f0c36","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[]},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-rhel1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1","etag":"W/\"054052bb-11ff-4f6e-ac1a-3427c2fd17aa\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f6cfc635-411e-48ce-a627-39a2fc0d3168","ipAddress":"52.224.165.15","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-ubuntu1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-ubuntu1","etag":"W/\"bcae50c5-146f-4fcb-a461-7c1030ba7b74\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"e272bd74-f661-484f-b223-88dd128a4049","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-win12","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-win12","etag":"W/\"56ce00f4-50d7-4682-9ee8-6836bf5c0ea6\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"b9200977-8147-40a5-83c2-d5892d5ddedc","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-centos1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqazure-centos1","etag":"W/\"734a3944-a880-444c-8c92-cace6e28e303\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"475a66f0-9e89-4226-a9f0-9baaaf31d619","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqtestwinimg6202","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqtestwinimg6202","etag":"W/\"b656279a-26ff-4021-94bb-263420cf494e\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"fb942169-855b-44f8-b12f-fd63e961b140","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb-a-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip","etag":"W/\"3ba30997-7d2f-470c-96f6-301158e93b7c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3c605f75-23c0-46ab-ba2b-6fd4430140fd","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb-b-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-b-ip","etag":"W/\"cf6012c7-3d47-438f-84d7-332ad1ef4500\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"5d1a2425-a351-4c0f-bc87-37e6500bff22","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb1-LoadBalancerFrontEnd","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb1-LoadBalancerFrontEnd","etag":"W/\"a38434c8-7b23-4092-b7c6-402238eac0dc\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f28e0f25-b372-4edf-97d9-13a9e3b4ba2d","ipAddress":"40.71.82.83","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb2-publicip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb2-publicip","etag":"W/\"cddd97d1-6111-4477-8a00-3dc885237a1d\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"83e7257d-ab94-4229-8eb5-4798f37ef28d","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb2/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"spec0deply1ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/spec0deply1ip","etag":"W/\"2080997a-38a6-420d-ba86-e9582e1331c7\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"a08b891e-e45a-4970-aefc-f6c996989490","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"dnsSettings":{"domainNameLabel":"spec0deply1dns","fqdn":"spec0deply1dns.eastus.cloudapp.azure.com"},"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-linux-managed-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqazure-linux-managed-ip","etag":"W/\"0efc9684-fb7d-4fb7-b9b9-f33dbac04a28\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"6a2a9142-26e8-45cd-93bf-7318192f3528","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqmismatch1","etag":"W/\"9b8b1729-21c4-4c53-94f2-15715315ad73\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"a97c71d0-6b78-4ffe-8e5c-0be1ee653f8c","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"dnsSettings":{"domainNameLabel":"miqmismatch1","fqdn":"miqmismatch1.eastus.cloudapp.azure.com"},"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"jf-metrics-2","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-2","etag":"W/\"b43ebe01-574c-4454-87eb-3401fbcf36f2\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"e446f3e4-9410-4d7f-bb04-2652096359de","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"jf-metrics-3","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-3","etag":"W/\"a6ee7100-6202-4ae2-a2db-f828abec8af9\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"de5995a4-15c1-40ba-ad78-67e70a92654b","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-oraclelinux1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux1","etag":"W/\"98bee7b4-2fcc-471d-b5ce-92850e6c3d6b\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"f2ac7c18-520b-4b42-94e7-da264a842f41","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-oraclelinux2","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux2","etag":"W/\"0865cebc-95b9-49d2-9f10-21dbafb23cac\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"2f4e1091-46f0-474c-a697-8dbcea6ba2a6","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:46 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 85dff4ad-200a-43b2-9dde-ae66d4e4d8e5 + X-Ms-Correlation-Request-Id: + - 85dff4ad-200a-43b2-9dde-ae66d4e4d8e5 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213948Z:85dff4ad-200a-43b2-9dde-ae66d4e4d8e5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:48 GMT + Content-Length: + - '8649' + body: + encoding: ASCII-8BIT + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest18686","name":"miqazuretest18686","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:22:54.7808677Z","primaryEndpoints":{"blob":"https://miqazuretest18686.blob.core.windows.net/","queue":"https://miqazuretest18686.queue.core.windows.net/","table":"https://miqazuretest18686.table.core.windows.net/","file":"https://miqazuretest18686.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest14047","name":"miqazuretest14047","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:30:25.7028008Z","primaryEndpoints":{"blob":"https://miqazuretest14047.blob.core.windows.net/","queue":"https://miqazuretest14047.queue.core.windows.net/","table":"https://miqazuretest14047.table.core.windows.net/","file":"https://miqazuretest14047.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/rspeclb","name":"rspeclb","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-09-02T16:29:11.6823797Z","primaryEndpoints":{"blob":"https://rspeclb.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/spec0deply1stor","name":"spec0deply1stor","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-04-04T23:05:07.8274794Z","primaryEndpoints":{"blob":"https://spec0deply1stor.blob.core.windows.net/","queue":"https://spec0deply1stor.queue.core.windows.net/","table":"https://spec0deply1stor.table.core.windows.net/","file":"https://spec0deply1stor.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Storage/storageAccounts/miqazuretest26611","name":"miqazuretest26611","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2211656Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2211656Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-05-02T18:01:29.2743021Z","primaryEndpoints":{"blob":"https://miqazuretest26611.blob.core.windows.net/","queue":"https://miqazuretest26611.queue.core.windows.net/","table":"https://miqazuretest26611.table.core.windows.net/","file":"https://miqazuretest26611.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest16487","name":"miqazuretest16487","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:26:55.3231669Z","primaryEndpoints":{"blob":"https://miqazuretest16487.blob.core.windows.net/","queue":"https://miqazuretest16487.queue.core.windows.net/","table":"https://miqazuretest16487.table.core.windows.net/","file":"https://miqazuretest16487.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Storage/storageAccounts/miqazuretest32946","name":"miqazuretest32946","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"delete":"false"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.0404359Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.0404359Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T21:18:37.0793411Z","primaryEndpoints":{"blob":"https://miqazuretest32946.blob.core.windows.net/","queue":"https://miqazuretest32946.queue.core.windows.net/","table":"https://miqazuretest32946.table.core.windows.net/","file":"https://miqazuretest32946.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Storage/storageAccounts/miqazureshared1","name":"miqazureshared1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.1935084Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.1935084Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T20:42:52.498085Z","primaryEndpoints":{"blob":"https://miqazureshared1.blob.core.windows.net/","queue":"https://miqazureshared1.queue.core.windows.net/","table":"https://miqazureshared1.table.core.windows.net/","file":"https://miqazureshared1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://miqazureshared1-secondary.blob.core.windows.net/","queue":"https://miqazureshared1-secondary.queue.core.windows.net/","table":"https://miqazureshared1-secondary.table.core.windows.net/"}}}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:49 GMT +- request: + method: post + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest18686/listKeys?api-version=2017-10-01 + body: + encoding: ASCII-8BIT + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + Content-Length: + - '0' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 66838bf2-b906-40a0-beae-24c7b1447dd0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - '1191' + X-Ms-Correlation-Request-Id: + - 000215ef-572a-4640-b914-5f27f9d43428 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213949Z:000215ef-572a-4640-b914-5f27f9d43428 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:48 GMT + body: + encoding: ASCII-8BIT + string: '{"keys":[{"keyName":"key1","value":"32PV5jeBt8nw1XvFbZokY26SXchbD6H2tw/YrteEYVE0kpMLKrZ74VrwaIjDyucdi/RxDaAlf7dJIilLS7muNw==","permissions":"Full"},{"keyName":"key2","value":"Eo5x9CQJL1/wl6Tkj5N7M5eEdw6Hym6AeyTt3xjcDl30sV8Iadro6ywZzOHQwNDlmrDaBF6x2a9ZFL7zswxQ7w==","permissions":"Full"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:49 GMT +- request: + method: head + uri: https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - '' + X-Ms-Date: + - Wed, 07 Mar 2018 21:39:49 GMT + X-Ms-Version: + - '2016-05-31' + Auth-String: + - 'true' + Verb: + - HEAD + Authorization: + - SharedKey miqazuretest18686:Df11OSAWxwTvKPTRagNiPIKIjSguhkVpCtt7kg67AGg= + response: + status: + code: 200 + message: OK + headers: + Content-Length: + - '32212255232' + Content-Type: + - application/octet-stream + Content-Md5: + - dQL+XHjFNPdoMEweI63fwQ== + Last-Modified: + - Wed, 07 Mar 2018 21:39:46 GMT + Accept-Ranges: + - bytes + Etag: + - '"0x8D58473F210C289"' + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Request-Id: + - e276d83f-001e-004c-765c-b6e160000000 + X-Ms-Version: + - '2016-05-31' + X-Ms-Meta-Microsoftazurecompute-Resourcegroupname: + - miq-azure-test1 + X-Ms-Meta-Microsoftazurecompute-Vmname: + - miq-test-rhel1 + X-Ms-Meta-Microsoftazurecompute-Diskid: + - 0ea91415-9058-46c6-9792-3afcb4da976f + X-Ms-Meta-Microsoftazurecompute-Diskname: + - miq-test-rhel1 + X-Ms-Meta-Microsoftazurecompute-Disktype: + - OSDisk + X-Ms-Lease-Status: + - locked + X-Ms-Lease-State: + - leased + X-Ms-Lease-Duration: + - infinite + X-Ms-Blob-Type: + - PageBlob + X-Ms-Blob-Sequence-Number: + - '371' + X-Ms-Copy-Id: + - b967ea05-82a2-405a-8df9-4615d59df4eb + X-Ms-Copy-Source: + - https://ardfepirv2bl5prdstr06.blob.core.windows.net/a879bbefc56a43abb0ce65052aac09f3/rhel-72-20160302?sv=2014-02-14&sr=b&si=PirCacheAccountPublisherContainerPolicy&sig=2TQ3SKHqVnqe4jVKB4qMCBOphv2nYelKworI7pfckrs%3D + X-Ms-Copy-Status: + - success + X-Ms-Copy-Progress: + - 32212255232/32212255232 + X-Ms-Copy-Completion-Time: + - Fri, 18 Mar 2016 17:23:28 GMT + X-Ms-Server-Encrypted: + - 'false' + Date: + - Wed, 07 Mar 2018 21:39:49 GMT + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:50 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"5ad0e691-263e-42ca-8a93-833bd4dbf13f" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - '09ee951d-628b-49da-8115-7c932da14e7f' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14957' + X-Ms-Correlation-Request-Id: + - b55a3a91-a70a-4db2-8239-d0c559ad138f + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213950Z:b55a3a91-a70a-4db2-8239-d0c559ad138f + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:49 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n \"type\": + \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f4a4a6a5-e2e8-47bd-b46f-00592f8fce53\",\r\n \"securityRules\": + [\r\n {\r\n \"name\": \"default-allow-ssh\",\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/default-allow-ssh\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"rhel1-inbound1\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/rhel1-inbound1\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"80\",\r\n + \ \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"rhel1-inbound2\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/rhel1-inbound2\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"443\",\r\n + \ \"destinationPortRange\": \"443\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n + \ {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowVnetInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/DenyAllInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n + \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n + \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowVnetOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to all VMs + in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": + \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowInternetOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/DenyAllOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": + [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n + \ ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"\r\n + \ }\r\n ]\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:50 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"fceae1ac-4620-482a-bc6d-79c867179ae5" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 69b6e963-457f-4df6-a104-038e5c5c0d82 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14954' + X-Ms-Correlation-Request-Id: + - 1977bb1a-3cd4-4b10-be84-1cc62a6c13ec + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213951Z:1977bb1a-3cd4-4b10-be84-1cc62a6c13ec + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:51 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-azure-test1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1\",\r\n + \ \"etag\": \"W/\\\"fceae1ac-4620-482a-bc6d-79c867179ae5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"d74c1e5f-50e4-4c8a-a7fe-78eaddc6b915\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.16.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\",\r\n + \ \"etag\": \"W/\\\"fceae1ac-4620-482a-bc6d-79c867179ae5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.16.0.0/24\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": + [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": + false\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:51 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"f006e6f9-0292-42cd-99fc-f72f194553c1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 5088aedd-365d-4829-bc8a-da902185af87 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14963' + X-Ms-Correlation-Request-Id: + - 2bc3da17-1386-48ca-87f2-830ab539fabc + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213951Z:2bc3da17-1386-48ca-87f2-830ab539fabc + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:51 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1390\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"98853f48-2806-4065-be57-cf9159550440\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.16.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-10-EB-AB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\"\r\n + \ },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:52 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0NTQsIm5iZiI6MTUyMDQ1ODQ1NCwiZXhwIjoxNTIwNDYyMzU0LCJhaW8iOiJZMk5nWUxDUE1wMmdMcjlDNk5QNUYrbzhLdmYyQXdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiakdib0lqMHVsRVdoM2k1bHZQMEFBQSIsInZlciI6IjEuMCJ9.jmxmA314Xo2sCkMYAJEwSZp_I4XkZ_Kuar2kPeNvimKHV-TfX8TceGGKkodwBeRuUJpvN4YUg8OhrUJLnftoX5_QgsBI8D3HJWXWJ8Ys0A1cFEmkQb-rEafaf8TYQFwtBKQKDhm-exeKP8GCDLW6q4s2I9vhH0w8AZt5-1_41sOnfLj2m04yUdoGG_v6OfQU7ku_JXw3adwfjQNyIGxmd82XnFBpeVJuLXSdMDY9dJTI1hD5SqKp0Ez__7TYyiooPBX3f6TCIN_VV1qa57PLrAw9N4pldvpsp3WaF7_g7veJ_EEB8qdqIPV01GCneOGBDc8mYgNSQ-XazCp9-ag86g + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"054052bb-11ff-4f6e-ac1a-3427c2fd17aa" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - db27b507-1bc3-4fdf-9f65-45ab66985a03 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14943' + X-Ms-Correlation-Request-Id: + - 941d4325-5751-4886-ae5f-3969c409a74a + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213952Z:941d4325-5751-4886-ae5f-3969c409a74a + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:51 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\",\r\n + \ \"etag\": \"W/\\\"054052bb-11ff-4f6e-ac1a-3427c2fd17aa\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f6cfc635-411e-48ce-a627-39a2fc0d3168\",\r\n \"ipAddress\": + \"52.224.165.15\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n + \ \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:52 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_delete_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_delete_EndRequest.yml new file mode 100644 index 00000000..bdb36d54 --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_delete_EndRequest.yml @@ -0,0 +1,2440 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - 85e77bc8-dda8-465d-9b7e-645fbd100100 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzByqtRDOlRhwJxsxIt1vHeS2-yIEg80Rv-rj8v7IlAURyJugpwdRpAcqrITNbqO7N3GyrQabvMv8MmSx4jiiU0fBTY-wnohpxwYk3OKZ-LfexESIC8erYboZxm-8siAa7tMzwjHQ0RB8B2ftLSWKRy8ogNkYdRUgafiUpq78_jjUgAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=003; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 21:38:28 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"0","expires_on":"1520462308","not_before":"1520458408","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MDgsIm5iZiI6MTUyMDQ1ODQwOCwiZXhwIjoxNTIwNDYyMzA4LCJhaW8iOiJZMk5nWUloWXVQZmJ0NXFIVndLbi9iQjQxN3o4Q3dBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoieUh2bmhhamRYVWFiZm1SZnZSQUJBQSIsInZlciI6IjEuMCJ9.jbSCkR7YsHeTEW5iVFihl1_M7tyYWyoooH7ivFE7GMkvuI9qppjK4t0K61yVRZN_tWDDW0TE-pUgCnH_o7p5ZVTlNg3qbGTSk6mr8gX8TFdiX8ptJ569uSYG1xP-HFQVo6hjRREQ1nY2upG5WUdsXvMxu4oSGhVL6AtNMfv35cBN2SvHCtgND-hFOjKDeqZuRPOr6r3C2LL9wURRxQBYeDCUaOuMiyYWlVtQf_FKPZX-QfyPdqi2jU-meS-b3RkIsVDmX21qRpxSVMTgcfYLLQc0L9K2_8Pc2lf7O7vBG-Hm8wOozNVhSifCz_WKbFPMnMKcUZ5c9aIbXSWLjO11qQ"}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:28 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MDgsIm5iZiI6MTUyMDQ1ODQwOCwiZXhwIjoxNTIwNDYyMzA4LCJhaW8iOiJZMk5nWUloWXVQZmJ0NXFIVndLbi9iQjQxN3o4Q3dBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoieUh2bmhhamRYVWFiZm1SZnZSQUJBQSIsInZlciI6IjEuMCJ9.jbSCkR7YsHeTEW5iVFihl1_M7tyYWyoooH7ivFE7GMkvuI9qppjK4t0K61yVRZN_tWDDW0TE-pUgCnH_o7p5ZVTlNg3qbGTSk6mr8gX8TFdiX8ptJ569uSYG1xP-HFQVo6hjRREQ1nY2upG5WUdsXvMxu4oSGhVL6AtNMfv35cBN2SvHCtgND-hFOjKDeqZuRPOr6r3C2LL9wURRxQBYeDCUaOuMiyYWlVtQf_FKPZX-QfyPdqi2jU-meS-b3RkIsVDmX21qRpxSVMTgcfYLLQc0L9K2_8Pc2lf7O7vBG-Hm8wOozNVhSifCz_WKbFPMnMKcUZ5c9aIbXSWLjO11qQ + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14998' + X-Ms-Request-Id: + - e14c3581-7e4a-4521-afdc-918d59c7f3ca + X-Ms-Correlation-Request-Id: + - e14c3581-7e4a-4521-afdc-918d59c7f3ca + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213828Z:e14c3581-7e4a-4521-afdc-918d59c7f3ca + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:28 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:29 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MDgsIm5iZiI6MTUyMDQ1ODQwOCwiZXhwIjoxNTIwNDYyMzA4LCJhaW8iOiJZMk5nWUloWXVQZmJ0NXFIVndLbi9iQjQxN3o4Q3dBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoieUh2bmhhamRYVWFiZm1SZnZSQUJBQSIsInZlciI6IjEuMCJ9.jbSCkR7YsHeTEW5iVFihl1_M7tyYWyoooH7ivFE7GMkvuI9qppjK4t0K61yVRZN_tWDDW0TE-pUgCnH_o7p5ZVTlNg3qbGTSk6mr8gX8TFdiX8ptJ569uSYG1xP-HFQVo6hjRREQ1nY2upG5WUdsXvMxu4oSGhVL6AtNMfv35cBN2SvHCtgND-hFOjKDeqZuRPOr6r3C2LL9wURRxQBYeDCUaOuMiyYWlVtQf_FKPZX-QfyPdqi2jU-meS-b3RkIsVDmX21qRpxSVMTgcfYLLQc0L9K2_8Pc2lf7O7vBG-Hm8wOozNVhSifCz_WKbFPMnMKcUZ5c9aIbXSWLjO11qQ + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14965' + X-Ms-Request-Id: + - 205643c3-c0e7-4087-99df-7b979eecd8ed + X-Ms-Correlation-Request-Id: + - 205643c3-c0e7-4087-99df-7b979eecd8ed + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213830Z:205643c3-c0e7-4087-99df-7b979eecd8ed + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:29 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:30 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/ladas_test?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MDgsIm5iZiI6MTUyMDQ1ODQwOCwiZXhwIjoxNTIwNDYyMzA4LCJhaW8iOiJZMk5nWUloWXVQZmJ0NXFIVndLbi9iQjQxN3o4Q3dBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoieUh2bmhhamRYVWFiZm1SZnZSQUJBQSIsInZlciI6IjEuMCJ9.jbSCkR7YsHeTEW5iVFihl1_M7tyYWyoooH7ivFE7GMkvuI9qppjK4t0K61yVRZN_tWDDW0TE-pUgCnH_o7p5ZVTlNg3qbGTSk6mr8gX8TFdiX8ptJ569uSYG1xP-HFQVo6hjRREQ1nY2upG5WUdsXvMxu4oSGhVL6AtNMfv35cBN2SvHCtgND-hFOjKDeqZuRPOr6r3C2LL9wURRxQBYeDCUaOuMiyYWlVtQf_FKPZX-QfyPdqi2jU-meS-b3RkIsVDmX21qRpxSVMTgcfYLLQc0L9K2_8Pc2lf7O7vBG-Hm8wOozNVhSifCz_WKbFPMnMKcUZ5c9aIbXSWLjO11qQ + response: + status: + code: 404 + message: Not Found + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + X-Ms-Failure-Cause: + - gateway + X-Ms-Request-Id: + - 9ec1b7ec-3fab-4ef8-a865-7f1f9dfaf428 + X-Ms-Correlation-Request-Id: + - 9ec1b7ec-3fab-4ef8-a865-7f1f9dfaf428 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213831Z:9ec1b7ec-3fab-4ef8-a865-7f1f9dfaf428 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:31 GMT + Content-Length: + - '163' + body: + encoding: UTF-8 + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachines/ladas_test'' + under resource group ''miq-azure-test1'' was not found."}}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:31 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/ladas_test?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MDgsIm5iZiI6MTUyMDQ1ODQwOCwiZXhwIjoxNTIwNDYyMzA4LCJhaW8iOiJZMk5nWUloWXVQZmJ0NXFIVndLbi9iQjQxN3o4Q3dBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoieUh2bmhhamRYVWFiZm1SZnZSQUJBQSIsInZlciI6IjEuMCJ9.jbSCkR7YsHeTEW5iVFihl1_M7tyYWyoooH7ivFE7GMkvuI9qppjK4t0K61yVRZN_tWDDW0TE-pUgCnH_o7p5ZVTlNg3qbGTSk6mr8gX8TFdiX8ptJ569uSYG1xP-HFQVo6hjRREQ1nY2upG5WUdsXvMxu4oSGhVL6AtNMfv35cBN2SvHCtgND-hFOjKDeqZuRPOr6r3C2LL9wURRxQBYeDCUaOuMiyYWlVtQf_FKPZX-QfyPdqi2jU-meS-b3RkIsVDmX21qRpxSVMTgcfYLLQc0L9K2_8Pc2lf7O7vBG-Hm8wOozNVhSifCz_WKbFPMnMKcUZ5c9aIbXSWLjO11qQ + response: + status: + code: 404 + message: Not Found + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + X-Ms-Failure-Cause: + - gateway + X-Ms-Request-Id: + - ab2c5d62-402d-40f3-b252-fb3266318ab3 + X-Ms-Correlation-Request-Id: + - ab2c5d62-402d-40f3-b252-fb3266318ab3 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213832Z:ab2c5d62-402d-40f3-b252-fb3266318ab3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:32 GMT + Content-Length: + - '163' + body: + encoding: UTF-8 + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachines/ladas_test'' + under resource group ''miq-azure-test1'' was not found."}}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:32 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_restart_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_restart_EndRequest.yml new file mode 100644 index 00000000..a6272390 --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_restart_EndRequest.yml @@ -0,0 +1,3959 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - 0072da97-3994-443d-b235-b71db4e10000 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzDk5DWONJKd4ea5ldfQesvqqrrQYM0_LLNme7qvbk1dle1x6AkZWpuXH-Vo_LwxDI19elq0M8RJUFxbGE6GsMyK5FH6qdLMlzmJ7Wo85cJkskbKQzgSGV1sCN8ay7KCqBmz1rB2LDROqz8NcHU9Y-hSLtVJbKUP0iPAWl38FqtvcgAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=008; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 21:37:43 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"0","expires_on":"1520462264","not_before":"1520458364","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw"}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:45 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14999' + X-Ms-Request-Id: + - 5f47d1a6-3d91-40f6-bdac-be52c0e4eefa + X-Ms-Correlation-Request-Id: + - 5f47d1a6-3d91-40f6-bdac-be52c0e4eefa + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213745Z:5f47d1a6-3d91-40f6-bdac-be52c0e4eefa + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:44 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:45 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14959' + X-Ms-Request-Id: + - 62af8a45-6fdb-44b0-bee2-c1b87a5356e9 + X-Ms-Correlation-Request-Id: + - 62af8a45-6fdb-44b0-bee2-c1b87a5356e9 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213746Z:62af8a45-6fdb-44b0-bee2-c1b87a5356e9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:46 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:47 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4750,Microsoft.Compute/LowCostGet30Min;37914 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 88a2ae55-f4ee-4aa8-aa24-021e104c47a6 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14959' + X-Ms-Correlation-Request-Id: + - 6dd33a91-40a3-4b55-b6bb-f26d950e04f4 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213747Z:6dd33a91-40a3-4b55-b6bb-f26d950e04f4 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:47 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"properties\": {\r\n \"vmId\": \"03e8467b-baab-4867-9cc4-157336b7e2e4\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Basic_A0\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7.2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"miq-test-rhel1\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"miq-test-rhel1\",\r\n + \ \"adminUsername\": \"dberger\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true,\r\n \"storageUri\": \"https://miqazuretest18686.blob.core.windows.net/\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": + \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"settings\": {\"xmlCfg\":\"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxEaWFnbm9zdGljSW5mcmFzdHJ1Y3R1cmVMb2dzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIiBzY2hlZHVsZWRUcmFuc2ZlckxvZ0xldmVsRmlsdGVyPSJXYXJuaW5nIi8+PFBlcmZvcm1hbmNlQ291bnRlcnMgc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQnl0ZXMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGVyY2VudEF2YWlsYWJsZU1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iTWVtb3J5IHVzZWQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgcGVyY2VudGFnZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHVzZWQgYnkgY2FjaGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50UGVyU2Vjb25kIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFnZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2UgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1dyaXR0ZW5QZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2Ugd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iU3dhcCBhdmFpbGFibGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50QXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlN3YXAgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgaWRsZSB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iUGVyY2VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkNQVSB1c2VyIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50TmljZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIG5pY2UgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcml2aWxlZ2VkVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgcHJpdmlsZWdlZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIGludGVycnVwdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIERQQyB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFByb2Nlc3NvclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIHBlcmNlbnRhZ2UgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgSU8gd2FpdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xSZWFkQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCBndWVzdCBPUyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGUgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xUcmFuc2ZlcnNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXJzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcUmVhZHNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVdyaXRlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlNlY29uZHMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJEaXNrIHdyaXRlIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xBdmVyYWdlVHJhbnNmZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXIgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcXVldWUgbGVuZ3RoIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgb3V0IGd1ZXN0IE9TIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgaW4gZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1RyYW5zbWl0dGVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHNlbnQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHJlY2VpdmVkIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxSeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyByZWNlaXZlZCBlcnJvcnMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxUeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyBzZW50IGVycm9ycyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgY29sbGlzaW9ucyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48L1BlcmZvcm1hbmNlQ291bnRlcnM+PE1ldHJpY3MgcmVzb3VyY2VJZD0iL3N1YnNjcmlwdGlvbnMvMjU4NmM2NGItMzhiNC00NTI3LWExNDAtMDEyZDQ5ZGZjMDJjL3Jlc291cmNlR3JvdXBzL21pcS1henVyZS10ZXN0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL21pcS10ZXN0LXJoZWwxIj48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMUgiLz48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iLz48L01ldHJpY3M+PC9EaWFnbm9zdGljTW9uaXRvckNvbmZpZ3VyYXRpb24+PC9XYWRDZmc+\",\"StorageAccount\":\"miqazuretest18686\"},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": + \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\"\r\n }\r\n + \ ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": + \"eastus\",\r\n \"tags\": {\r\n \"Shutdown\": \"true\"\r\n },\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\",\r\n + \ \"name\": \"miq-test-rhel1\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:48 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"f006e6f9-0292-42cd-99fc-f72f194553c1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 5a1c54d2-b8c9-4806-b013-8a839d10b367 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14956' + X-Ms-Correlation-Request-Id: + - 9d116369-45f3-40dd-9e27-d9fdf449533a + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213748Z:9d116369-45f3-40dd-9e27-d9fdf449533a + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:47 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1390\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"98853f48-2806-4065-be57-cf9159550440\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.16.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-10-EB-AB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\"\r\n + \ },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:48 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1?api-version=2017-08-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14965' + X-Ms-Request-Id: + - '09b2db46-4002-484f-b180-1afd18e9eba8' + X-Ms-Correlation-Request-Id: + - '09b2db46-4002-484f-b180-1afd18e9eba8' + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213748Z:09b2db46-4002-484f-b180-1afd18e9eba8 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:48 GMT + Content-Length: + - '183' + body: + encoding: ASCII-8BIT + string: '{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1","name":"miq-azure-test1","location":"eastus","properties":{"provisioningState":"Succeeded"}}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:49 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute/locations/eastus/vmSizes?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4749,Microsoft.Compute/LowCostGet30Min;37913 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 5484a323-27c7-4cc3-83fa-d1aa2563f579 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14958' + X-Ms-Correlation-Request-Id: + - 9d7bf978-ed7e-4cd4-95b8-66437b2a479b + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213749Z:9d7bf978-ed7e-4cd4-95b8-66437b2a479b + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:49 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_B1ms\",\r\n + \ \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_B1s\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2ms\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2s\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_B4ms\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_B8ms\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11-1_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12-1_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12-2_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2s_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 65636,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1024000,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H8m\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1024000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16m\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16r\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16mr\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV6\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV12\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV24\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6s_v2\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12s_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24rs_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24s_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24r\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6s_v3\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12s_v3\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24rs_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24s_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"numberOfCores\": + 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 589824,\r\n \"memoryInMB\": 147456,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND6s\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND12s\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND24rs\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND24s\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_A10\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A11\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ }\r\n ]\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:49 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4748,Microsoft.Compute/LowCostGet30Min;37912 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 33cdc915-0641-4702-96b9-5714f7956f53 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14961' + X-Ms-Correlation-Request-Id: + - 844e5c63-900f-456d-bf28-c366a0005653 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213759Z:844e5c63-900f-456d-bf28-c366a0005653 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:58 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"properties\": {\r\n \"vmId\": \"03e8467b-baab-4867-9cc4-157336b7e2e4\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Basic_A0\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7.2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"miq-test-rhel1\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"miq-test-rhel1\",\r\n + \ \"adminUsername\": \"dberger\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true,\r\n \"storageUri\": \"https://miqazuretest18686.blob.core.windows.net/\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": + \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"settings\": {\"xmlCfg\":\"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxEaWFnbm9zdGljSW5mcmFzdHJ1Y3R1cmVMb2dzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIiBzY2hlZHVsZWRUcmFuc2ZlckxvZ0xldmVsRmlsdGVyPSJXYXJuaW5nIi8+PFBlcmZvcm1hbmNlQ291bnRlcnMgc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQnl0ZXMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGVyY2VudEF2YWlsYWJsZU1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iTWVtb3J5IHVzZWQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgcGVyY2VudGFnZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHVzZWQgYnkgY2FjaGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50UGVyU2Vjb25kIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFnZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2UgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1dyaXR0ZW5QZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2Ugd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iU3dhcCBhdmFpbGFibGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50QXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlN3YXAgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgaWRsZSB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iUGVyY2VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkNQVSB1c2VyIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50TmljZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIG5pY2UgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcml2aWxlZ2VkVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgcHJpdmlsZWdlZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIGludGVycnVwdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIERQQyB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFByb2Nlc3NvclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIHBlcmNlbnRhZ2UgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgSU8gd2FpdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xSZWFkQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCBndWVzdCBPUyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGUgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xUcmFuc2ZlcnNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXJzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcUmVhZHNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVdyaXRlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlNlY29uZHMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJEaXNrIHdyaXRlIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xBdmVyYWdlVHJhbnNmZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXIgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcXVldWUgbGVuZ3RoIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgb3V0IGd1ZXN0IE9TIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgaW4gZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1RyYW5zbWl0dGVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHNlbnQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHJlY2VpdmVkIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxSeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyByZWNlaXZlZCBlcnJvcnMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxUeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyBzZW50IGVycm9ycyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgY29sbGlzaW9ucyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48L1BlcmZvcm1hbmNlQ291bnRlcnM+PE1ldHJpY3MgcmVzb3VyY2VJZD0iL3N1YnNjcmlwdGlvbnMvMjU4NmM2NGItMzhiNC00NTI3LWExNDAtMDEyZDQ5ZGZjMDJjL3Jlc291cmNlR3JvdXBzL21pcS1henVyZS10ZXN0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL21pcS10ZXN0LXJoZWwxIj48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMUgiLz48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iLz48L01ldHJpY3M+PC9EaWFnbm9zdGljTW9uaXRvckNvbmZpZ3VyYXRpb24+PC9XYWRDZmc+\",\"StorageAccount\":\"miqazuretest18686\"},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": + \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\"\r\n }\r\n + \ ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": + \"eastus\",\r\n \"tags\": {\r\n \"Shutdown\": \"true\"\r\n },\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\",\r\n + \ \"name\": \"miq-test-rhel1\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:00 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/instanceView?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/GetInstanceView3Min;4798,Microsoft.Compute/GetInstanceView30Min;23853 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 7db0ef39-3c77-4ebc-94ab-ecb3cc1f65c8 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14955' + X-Ms-Correlation-Request-Id: + - 890b7299-630b-457c-8bae-94718e8f4391 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213811Z:890b7299-630b-457c-8bae-94718e8f4391 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:11 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.16\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n + \ \"time\": \"2018-03-07T21:37:56+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.3.9027\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"miq-test-rhel1\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2018-01-17T18:00:29.9011002+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": + \"https://miqazuretest18686.blob.core.windows.net/bootdiagnostics-miqtestrh-03e8467b-baab-4867-9cc4-157336b7e2e4/miq-test-rhel1.03e8467b-baab-4867-9cc4-157336b7e2e4.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://miqazuretest18686.blob.core.windows.net/bootdiagnostics-miqtestrh-03e8467b-baab-4867-9cc4-157336b7e2e4/miq-test-rhel1.03e8467b-baab-4867-9cc4-157336b7e2e4.serialconsole.log\"\r\n + \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": + \"2.3.9027\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T18:02:26.9167163+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:12 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network/networkInterfaces?api-version=2017-11-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 302bf361-ee57-4361-a515-85ad0854f6fa + X-Ms-Correlation-Request-Id: + - 302bf361-ee57-4361-a515-85ad0854f6fa + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213814Z:302bf361-ee57-4361-a515-85ad0854f6fa + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:14 GMT + Content-Length: + - '31614' + body: + encoding: ASCII-8BIT + string: '{"value":[{"name":"miqazure-coreos1235","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235","etag":"W/\"4a6546ab-a4c0-4d27-bccd-f6ebf3c405a2\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"fb0a5e60-a6c2-4bb8-a2f5-0c16216a49b0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235/ipConfigurations/ipconfig1","etag":"W/\"4a6546ab-a4c0-4d27-bccd-f6ebf3c405a2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.20.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/publicIPAddresses/miqazure-coreos1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/virtualNetworks/miq-azure-test3/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"rliadcyr3l1elbnsw4rabxqg1f.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkSecurityGroups/miqazure-coreos1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Compute/virtualMachines/miqazure-coreos1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"dbergerprov1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1","etag":"W/\"074dd836-918c-4e40-a118-94f0d366e175\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"ecdcd2f0-91bb-4c40-91cd-a3d76fc5e455","ipConfigurations":[{"name":"dbergerprov1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1","etag":"W/\"074dd836-918c-4e40-a118-94f0d366e175\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.9","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/dbergerprov1-publicIp"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST4/providers/Microsoft.Compute/virtualMachines/dbergerprov1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-rhel1390","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390","etag":"W/\"f006e6f9-0292-42cd-99fc-f72f194553c1\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"98853f48-2806-4065-be57-cf9159550440","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1","etag":"W/\"f006e6f9-0292-42cd-99fc-f72f194553c1\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-EB-AB","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-ubuntu1989","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989","etag":"W/\"64e07488-15a2-4cec-b84a-6fd5ef04323c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"134a6669-ac4a-4d08-a0db-387bc4c49537","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989/ipConfigurations/ipconfig1","etag":"W/\"64e07488-15a2-4cec-b84a-6fd5ef04323c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.17.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-ubuntu1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miqazuretest18687/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-ubuntu1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-ubuntu1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-win12610","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610","etag":"W/\"dd925ef5-33d1-402c-a0f4-18c78c2641f4\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"5c2eef2c-0b36-4277-a940-957ed4d13be0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610/ipConfigurations/ipconfig1","etag":"W/\"dd925ef5-33d1-402c-a0f4-18c78c2641f4\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.18.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-win12"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miqazuretest19881/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-win12"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-win12"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-winimg241","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241","etag":"W/\"4a17a745-16a9-42d9-88c9-17a518959525\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"8ed2f3b0-4a4b-49ae-9f1d-ff7890dbd396","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1","etag":"W/\"4a17a745-16a9-42d9-88c9-17a518959525\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.7","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqtestwinimg6202"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miqtestwinimg3696"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-winimg"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-centos1611","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611","etag":"W/\"26031ef6-bb55-4019-8185-2dd1edcb207c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f1760e49-9853-4fdc-acfc-4ea232b9ed76","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1","etag":"W/\"26031ef6-bb55-4019-8185-2dd1edcb207c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqazure-centos1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miqazure-centos1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miqazure-centos1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1","etag":"W/\"3a72d0c3-bfda-4da5-a61b-e8c33e43de79\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"23d804a8-b623-49e7-9c8d-1d64245bef1e","ipConfigurations":[{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1","etag":"W/\"3a72d0c3-bfda-4da5-a61b-e8c33e43de79\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.8","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqmismatch1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Compute/virtualMachines/miqmismatch1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"rspec-lb-a670","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670","etag":"W/\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"46cb8216-786e-408e-9d86-c0855b357349","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1","etag":"W/\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/rspec-lb-a"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"rspec-lb-b843","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843","etag":"W/\"76aabe0c-8678-43f0-81a5-2f15784a4b99\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3ef6fa01-ac34-43a1-8fd7-67c706b4d8ef","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1","etag":"W/\"76aabe0c-8678-43f0-81a5-2f15784a4b99\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.11","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-b-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-b-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/rspec-lb-b"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"spec0deply1nic0","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic0","etag":"W/\"b817491c-aab8-4aab-b41d-b07bfffa5639\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"80ad9866-071d-4e3f-91d0-d47954eccee0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic0/ipConfigurations/ipconfig1","etag":"W/\"b817491c-aab8-4aab-b41d-b07bfffa5639\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/spec0deply1vnet/subnets/Subnet-1"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/backendAddressPools/BackendPool1"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/inboundNatRules/RDP-VM0"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/spec0deply1vm0"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"spec0deply1nic1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic1","etag":"W/\"2ec58a0b-4c03-4d0a-b788-9daffd54e7b2\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"57bbf7aa-d6c4-4f56-8f6a-089d15334221","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic1/ipConfigurations/ipconfig1","etag":"W/\"2ec58a0b-4c03-4d0a-b788-9daffd54e7b2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/spec0deply1vnet/subnets/Subnet-1"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/backendAddressPools/BackendPool1"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/inboundNatRules/RDP-VM1"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/spec0deply1vm1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqmismatch2656","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqmismatch2656","etag":"W/\"fef6a836-2802-4897-90c3-b3d71f133384\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"969dde6c-73c0-4340-877d-2b5fe2060026","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqmismatch2656/ipConfigurations/ipconfig1","etag":"W/\"fef6a836-2802-4897-90c3-b3d71f133384\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"172.23.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/virtualNetworks/miqazuretest33606/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkSecurityGroups/miqmismatch2-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Compute/virtualMachines/miqmismatch2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-linux-manag944","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944","etag":"W/\"b6339880-8ead-4c9e-b5c0-f38c4f8612d5\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"c5e8b90e-5a78-49b0-b224-b70ed3fb45e5","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944/ipConfigurations/ipconfig1","etag":"W/\"b6339880-8ead-4c9e-b5c0-f38c4f8612d5\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"172.25.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqazure-linux-managed-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miq-azure-test2/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkSecurityGroups/miqazure-linux-managed-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Compute/virtualMachines/miqazure-linux-managed"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"jf-metrics-2751","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751","etag":"W/\"c5f6f02a-b17c-4f34-882b-11c7adef0b44\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"207a58d3-f18d-4dab-8168-919877297a52","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751/ipConfigurations/ipconfig1","etag":"W/\"c5f6f02a-b17c-4f34-882b-11c7adef0b44\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.7","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-2"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/jf-metrics-2"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/jf-metrics-2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"jf-metrics-3421","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421","etag":"W/\"0b6f160b-ad10-48f8-9d0c-657193bb823f\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"b8b345e8-a353-4700-992e-be48a717b4e2","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421/ipConfigurations/ipconfig1","etag":"W/\"0b6f160b-ad10-48f8-9d0c-657193bb823f\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.8","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-3"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/jf-metrics-3"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/jf-metrics-3"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-oraclelinux310","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310","etag":"W/\"54cd4fe1-3ed5-4a8c-bc8d-527679c7a631\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"6a3fc1d7-4532-4ca0-b5c2-546cc8f7f313","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310/ipConfigurations/ipconfig1","etag":"W/\"54cd4fe1-3ed5-4a8c-bc8d-527679c7a631\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/miqazure-sharednsg1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/miqazure-oraclelinux1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-oraclelinux993","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993","etag":"W/\"a9432274-7b40-4eb3-a64f-a04267a423ff\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"75d8ed14-e0ae-4d84-99f6-e3f43d073e76","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993/ipConfigurations/ipconfig1","etag":"W/\"a9432274-7b40-4eb3-a64f-a04267a423ff\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux2"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/miqazure-sharednsg1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/miqazure-oraclelinux2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:14 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network/publicIPAddresses?api-version=2017-11-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - c950ba0a-14fc-46de-8865-80d5faf19702 + X-Ms-Correlation-Request-Id: + - c950ba0a-14fc-46de-8865-80d5faf19702 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213819Z:c950ba0a-14fc-46de-8865-80d5faf19702 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:18 GMT + Content-Length: + - '13978' + body: + encoding: ASCII-8BIT + string: '{"value":[{"name":"miqazure-coreos1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/publicIPAddresses/miqazure-coreos1","etag":"W/\"da64b64b-a755-4389-a2f3-5cba32f18c06\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"28617ed1-0270-4b39-873a-c3b48b3deef1","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"dbergerprov1-publicIp","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/dbergerprov1-publicIp","etag":"W/\"3d984c69-3f35-41ce-bdfc-8d207053a6a9\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"eb0e8804-e169-44ac-bb47-0929370977d2","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"ladas_test","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/ladas_test","etag":"W/\"32e21623-9a1b-4c40-80f4-6a350aa237a7\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3daa5f66-5a01-4242-b95b-c4e0ee8f0c36","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[]},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-rhel1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1","etag":"W/\"054052bb-11ff-4f6e-ac1a-3427c2fd17aa\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f6cfc635-411e-48ce-a627-39a2fc0d3168","ipAddress":"52.224.165.15","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-ubuntu1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-ubuntu1","etag":"W/\"bcae50c5-146f-4fcb-a461-7c1030ba7b74\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"e272bd74-f661-484f-b223-88dd128a4049","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-win12","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-win12","etag":"W/\"56ce00f4-50d7-4682-9ee8-6836bf5c0ea6\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"b9200977-8147-40a5-83c2-d5892d5ddedc","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-centos1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqazure-centos1","etag":"W/\"734a3944-a880-444c-8c92-cace6e28e303\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"475a66f0-9e89-4226-a9f0-9baaaf31d619","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqtestwinimg6202","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqtestwinimg6202","etag":"W/\"b656279a-26ff-4021-94bb-263420cf494e\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"fb942169-855b-44f8-b12f-fd63e961b140","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb-a-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip","etag":"W/\"3ba30997-7d2f-470c-96f6-301158e93b7c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3c605f75-23c0-46ab-ba2b-6fd4430140fd","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb-b-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-b-ip","etag":"W/\"cf6012c7-3d47-438f-84d7-332ad1ef4500\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"5d1a2425-a351-4c0f-bc87-37e6500bff22","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb1-LoadBalancerFrontEnd","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb1-LoadBalancerFrontEnd","etag":"W/\"a38434c8-7b23-4092-b7c6-402238eac0dc\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f28e0f25-b372-4edf-97d9-13a9e3b4ba2d","ipAddress":"40.71.82.83","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb2-publicip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb2-publicip","etag":"W/\"cddd97d1-6111-4477-8a00-3dc885237a1d\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"83e7257d-ab94-4229-8eb5-4798f37ef28d","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb2/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"spec0deply1ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/spec0deply1ip","etag":"W/\"2080997a-38a6-420d-ba86-e9582e1331c7\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"a08b891e-e45a-4970-aefc-f6c996989490","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"dnsSettings":{"domainNameLabel":"spec0deply1dns","fqdn":"spec0deply1dns.eastus.cloudapp.azure.com"},"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-linux-managed-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqazure-linux-managed-ip","etag":"W/\"0efc9684-fb7d-4fb7-b9b9-f33dbac04a28\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"6a2a9142-26e8-45cd-93bf-7318192f3528","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqmismatch1","etag":"W/\"9b8b1729-21c4-4c53-94f2-15715315ad73\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"a97c71d0-6b78-4ffe-8e5c-0be1ee653f8c","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"dnsSettings":{"domainNameLabel":"miqmismatch1","fqdn":"miqmismatch1.eastus.cloudapp.azure.com"},"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"jf-metrics-2","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-2","etag":"W/\"b43ebe01-574c-4454-87eb-3401fbcf36f2\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"e446f3e4-9410-4d7f-bb04-2652096359de","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"jf-metrics-3","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-3","etag":"W/\"a6ee7100-6202-4ae2-a2db-f828abec8af9\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"de5995a4-15c1-40ba-ad78-67e70a92654b","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-oraclelinux1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux1","etag":"W/\"98bee7b4-2fcc-471d-b5ce-92850e6c3d6b\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"f2ac7c18-520b-4b42-94e7-da264a842f41","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-oraclelinux2","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux2","etag":"W/\"0865cebc-95b9-49d2-9f10-21dbafb23cac\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"2f4e1091-46f0-474c-a697-8dbcea6ba2a6","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:19 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - c1b647ee-6ffd-473a-9abe-2d11c2e48a47 + X-Ms-Correlation-Request-Id: + - c1b647ee-6ffd-473a-9abe-2d11c2e48a47 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213823Z:c1b647ee-6ffd-473a-9abe-2d11c2e48a47 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:22 GMT + Content-Length: + - '8649' + body: + encoding: ASCII-8BIT + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest18686","name":"miqazuretest18686","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:22:54.7808677Z","primaryEndpoints":{"blob":"https://miqazuretest18686.blob.core.windows.net/","queue":"https://miqazuretest18686.queue.core.windows.net/","table":"https://miqazuretest18686.table.core.windows.net/","file":"https://miqazuretest18686.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest14047","name":"miqazuretest14047","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:30:25.7028008Z","primaryEndpoints":{"blob":"https://miqazuretest14047.blob.core.windows.net/","queue":"https://miqazuretest14047.queue.core.windows.net/","table":"https://miqazuretest14047.table.core.windows.net/","file":"https://miqazuretest14047.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/rspeclb","name":"rspeclb","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-09-02T16:29:11.6823797Z","primaryEndpoints":{"blob":"https://rspeclb.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/spec0deply1stor","name":"spec0deply1stor","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-04-04T23:05:07.8274794Z","primaryEndpoints":{"blob":"https://spec0deply1stor.blob.core.windows.net/","queue":"https://spec0deply1stor.queue.core.windows.net/","table":"https://spec0deply1stor.table.core.windows.net/","file":"https://spec0deply1stor.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Storage/storageAccounts/miqazuretest26611","name":"miqazuretest26611","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2211656Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2211656Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-05-02T18:01:29.2743021Z","primaryEndpoints":{"blob":"https://miqazuretest26611.blob.core.windows.net/","queue":"https://miqazuretest26611.queue.core.windows.net/","table":"https://miqazuretest26611.table.core.windows.net/","file":"https://miqazuretest26611.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest16487","name":"miqazuretest16487","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:26:55.3231669Z","primaryEndpoints":{"blob":"https://miqazuretest16487.blob.core.windows.net/","queue":"https://miqazuretest16487.queue.core.windows.net/","table":"https://miqazuretest16487.table.core.windows.net/","file":"https://miqazuretest16487.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Storage/storageAccounts/miqazuretest32946","name":"miqazuretest32946","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"delete":"false"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.0404359Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.0404359Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T21:18:37.0793411Z","primaryEndpoints":{"blob":"https://miqazuretest32946.blob.core.windows.net/","queue":"https://miqazuretest32946.queue.core.windows.net/","table":"https://miqazuretest32946.table.core.windows.net/","file":"https://miqazuretest32946.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Storage/storageAccounts/miqazureshared1","name":"miqazureshared1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.1935084Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.1935084Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T20:42:52.498085Z","primaryEndpoints":{"blob":"https://miqazureshared1.blob.core.windows.net/","queue":"https://miqazureshared1.queue.core.windows.net/","table":"https://miqazureshared1.table.core.windows.net/","file":"https://miqazureshared1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://miqazureshared1-secondary.blob.core.windows.net/","queue":"https://miqazureshared1-secondary.queue.core.windows.net/","table":"https://miqazureshared1-secondary.table.core.windows.net/"}}}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:23 GMT +- request: + method: post + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest18686/listKeys?api-version=2017-10-01 + body: + encoding: ASCII-8BIT + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + Content-Length: + - '0' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 2c87928a-1bb9-4e30-9db9-d43150ba59ee + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - '1189' + X-Ms-Correlation-Request-Id: + - 577c77db-8460-4847-87a9-a19bf3790404 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213823Z:577c77db-8460-4847-87a9-a19bf3790404 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:23 GMT + body: + encoding: ASCII-8BIT + string: '{"keys":[{"keyName":"key1","value":"32PV5jeBt8nw1XvFbZokY26SXchbD6H2tw/YrteEYVE0kpMLKrZ74VrwaIjDyucdi/RxDaAlf7dJIilLS7muNw==","permissions":"Full"},{"keyName":"key2","value":"Eo5x9CQJL1/wl6Tkj5N7M5eEdw6Hym6AeyTt3xjcDl30sV8Iadro6ywZzOHQwNDlmrDaBF6x2a9ZFL7zswxQ7w==","permissions":"Full"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:24 GMT +- request: + method: head + uri: https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - '' + X-Ms-Date: + - Wed, 07 Mar 2018 21:38:24 GMT + X-Ms-Version: + - '2016-05-31' + Auth-String: + - 'true' + Verb: + - HEAD + Authorization: + - SharedKey miqazuretest18686:WFgqc+or3mA5WhTdxn0Sehn++ICG6mqPoNYCek3IY04= + response: + status: + code: 200 + message: OK + headers: + Content-Length: + - '32212255232' + Content-Type: + - application/octet-stream + Content-Md5: + - dQL+XHjFNPdoMEweI63fwQ== + Last-Modified: + - Wed, 07 Mar 2018 21:38:20 GMT + Accept-Ranges: + - bytes + Etag: + - '"0x8D58473BF400C40"' + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Request-Id: + - 4bf38b31-001e-0094-125c-b646b1000000 + X-Ms-Version: + - '2016-05-31' + X-Ms-Meta-Microsoftazurecompute-Resourcegroupname: + - miq-azure-test1 + X-Ms-Meta-Microsoftazurecompute-Vmname: + - miq-test-rhel1 + X-Ms-Meta-Microsoftazurecompute-Diskid: + - 0ea91415-9058-46c6-9792-3afcb4da976f + X-Ms-Meta-Microsoftazurecompute-Diskname: + - miq-test-rhel1 + X-Ms-Meta-Microsoftazurecompute-Disktype: + - OSDisk + X-Ms-Lease-Status: + - locked + X-Ms-Lease-State: + - leased + X-Ms-Lease-Duration: + - infinite + X-Ms-Blob-Type: + - PageBlob + X-Ms-Blob-Sequence-Number: + - '371' + X-Ms-Copy-Id: + - b967ea05-82a2-405a-8df9-4615d59df4eb + X-Ms-Copy-Source: + - https://ardfepirv2bl5prdstr06.blob.core.windows.net/a879bbefc56a43abb0ce65052aac09f3/rhel-72-20160302?sv=2014-02-14&sr=b&si=PirCacheAccountPublisherContainerPolicy&sig=2TQ3SKHqVnqe4jVKB4qMCBOphv2nYelKworI7pfckrs%3D + X-Ms-Copy-Status: + - success + X-Ms-Copy-Progress: + - 32212255232/32212255232 + X-Ms-Copy-Completion-Time: + - Fri, 18 Mar 2016 17:23:28 GMT + X-Ms-Server-Encrypted: + - 'false' + Date: + - Wed, 07 Mar 2018 21:38:24 GMT + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:24 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"5ad0e691-263e-42ca-8a93-833bd4dbf13f" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 20eba246-45ba-47e0-8679-4e158c004f06 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14945' + X-Ms-Correlation-Request-Id: + - 7118879d-cfae-40e5-afdc-53111ec459ac + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213825Z:7118879d-cfae-40e5-afdc-53111ec459ac + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:24 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n \"type\": + \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f4a4a6a5-e2e8-47bd-b46f-00592f8fce53\",\r\n \"securityRules\": + [\r\n {\r\n \"name\": \"default-allow-ssh\",\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/default-allow-ssh\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"rhel1-inbound1\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/rhel1-inbound1\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"80\",\r\n + \ \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"rhel1-inbound2\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/rhel1-inbound2\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"443\",\r\n + \ \"destinationPortRange\": \"443\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n + \ {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowVnetInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/DenyAllInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n + \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n + \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowVnetOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to all VMs + in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": + \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowInternetOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/DenyAllOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": + [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n + \ ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"\r\n + \ }\r\n ]\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:25 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"fceae1ac-4620-482a-bc6d-79c867179ae5" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - '089587a5-b182-4657-aa7b-9dfb05ed52b7' + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14956' + X-Ms-Correlation-Request-Id: + - 4aaabf97-7c1f-4e7a-9cc3-05b59c31eca9 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213825Z:4aaabf97-7c1f-4e7a-9cc3-05b59c31eca9 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:25 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-azure-test1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1\",\r\n + \ \"etag\": \"W/\\\"fceae1ac-4620-482a-bc6d-79c867179ae5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"d74c1e5f-50e4-4c8a-a7fe-78eaddc6b915\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.16.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\",\r\n + \ \"etag\": \"W/\\\"fceae1ac-4620-482a-bc6d-79c867179ae5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.16.0.0/24\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": + [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": + false\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:26 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"f006e6f9-0292-42cd-99fc-f72f194553c1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - d5449b08-280a-4f69-8392-9e61b0f4a0d7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14959' + X-Ms-Correlation-Request-Id: + - a7206ea4-049b-4191-889e-ab413ecb4dc3 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213826Z:a7206ea4-049b-4191-889e-ab413ecb4dc3 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:26 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1390\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"98853f48-2806-4065-be57-cf9159550440\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.16.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-10-EB-AB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\"\r\n + \ },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:26 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzNjQsIm5iZiI6MTUyMDQ1ODM2NCwiZXhwIjoxNTIwNDYyMjY0LCJhaW8iOiJZMk5nWU5nbUxQbHA2NlQzTWV2Vi8ycEVTdDVSQmdBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoibDlweUFKUTVQVVN5TmJjZHRPRUFBQSIsInZlciI6IjEuMCJ9.KhSGcci18yXbdb52JMbhV55lcBHrLxstvi5kRIU7I0xTwwc-o2xU_QN-jQugqdxZ2vr6lXBEefDB3sbrjRZjSNbFBk5qqgPoZOEhzffrgwavbWsmtRXavCDMzSt4Tcqq2oENUD7-FrgGt0h2_um0fIWvvPo8ouoR_a9i2RpbS3DiELI57f-ADNeTLrUo45-mYCI1jrFSZBmJCg9AfN26ALNE7KePO-N11MbGNoLwGreS1ARmIa6JNPtKzAw14cWADX_V56l-EuUsbLTBHaqVq-5HGScktGGyxFWMwjFMhi-ErThaUKDEdgCS5dAo0v89c2SRKiV9yYQv3o1UUIVLqw + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"054052bb-11ff-4f6e-ac1a-3427c2fd17aa" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 700f7d0a-1cbb-4260-bd83-3f5c5a3d2543 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14845' + X-Ms-Correlation-Request-Id: + - 69558795-7330-4eeb-bda0-d0c916b548e9 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213827Z:69558795-7330-4eeb-bda0-d0c916b548e9 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:26 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\",\r\n + \ \"etag\": \"W/\\\"054052bb-11ff-4f6e-ac1a-3427c2fd17aa\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f6cfc635-411e-48ce-a627-39a2fc0d3168\",\r\n \"ipAddress\": + \"52.224.165.15\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n + \ \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:27 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_start_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_start_EndRequest.yml new file mode 100644 index 00000000..665680a8 --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_start_EndRequest.yml @@ -0,0 +1,3959 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - 3f433bd2-7f68-4e8c-815c-812955010100 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzw42M4Vodl2RZWVYJ2u5m_FClzwDHA9qbIm1fv7z7Amn_Xwv9v4H0Ou-4DkIYx5dZBEz0R1vg9EoJBzXoyFwlFmDGmKzzRAiw8WJVcZild2Me1JqLZklNSWrzViVnOS82BD8rtTNx6XMgxSBSYDmGXSLNLsx3cihStC9GG3I4FDMgAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=004; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 21:38:33 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"0","expires_on":"1520462313","not_before":"1520458413","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow"}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:33 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14998' + X-Ms-Request-Id: + - '086f326a-17d9-40c5-b1c0-1a88eae286de' + X-Ms-Correlation-Request-Id: + - '086f326a-17d9-40c5-b1c0-1a88eae286de' + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213834Z:086f326a-17d9-40c5-b1c0-1a88eae286de + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:33 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:34 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14957' + X-Ms-Request-Id: + - fa7c3fe6-020f-41e4-b8d5-4a05c17b17b2 + X-Ms-Correlation-Request-Id: + - fa7c3fe6-020f-41e4-b8d5-4a05c17b17b2 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213835Z:fa7c3fe6-020f-41e4-b8d5-4a05c17b17b2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:34 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:35 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4751,Microsoft.Compute/LowCostGet30Min;37899 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 7edabb04-bb8f-48b0-8825-93960b71f969 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14957' + X-Ms-Correlation-Request-Id: + - 4224fd49-fbd0-4d04-b65d-a8a1ce8aae64 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213836Z:4224fd49-fbd0-4d04-b65d-a8a1ce8aae64 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:35 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"properties\": {\r\n \"vmId\": \"03e8467b-baab-4867-9cc4-157336b7e2e4\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Basic_A0\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7.2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"miq-test-rhel1\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"miq-test-rhel1\",\r\n + \ \"adminUsername\": \"dberger\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true,\r\n \"storageUri\": \"https://miqazuretest18686.blob.core.windows.net/\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": + \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"settings\": {\"xmlCfg\":\"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxEaWFnbm9zdGljSW5mcmFzdHJ1Y3R1cmVMb2dzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIiBzY2hlZHVsZWRUcmFuc2ZlckxvZ0xldmVsRmlsdGVyPSJXYXJuaW5nIi8+PFBlcmZvcm1hbmNlQ291bnRlcnMgc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQnl0ZXMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGVyY2VudEF2YWlsYWJsZU1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iTWVtb3J5IHVzZWQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgcGVyY2VudGFnZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHVzZWQgYnkgY2FjaGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50UGVyU2Vjb25kIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFnZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2UgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1dyaXR0ZW5QZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2Ugd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iU3dhcCBhdmFpbGFibGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50QXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlN3YXAgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgaWRsZSB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iUGVyY2VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkNQVSB1c2VyIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50TmljZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIG5pY2UgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcml2aWxlZ2VkVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgcHJpdmlsZWdlZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIGludGVycnVwdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIERQQyB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFByb2Nlc3NvclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIHBlcmNlbnRhZ2UgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgSU8gd2FpdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xSZWFkQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCBndWVzdCBPUyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGUgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xUcmFuc2ZlcnNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXJzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcUmVhZHNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVdyaXRlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlNlY29uZHMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJEaXNrIHdyaXRlIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xBdmVyYWdlVHJhbnNmZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXIgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcXVldWUgbGVuZ3RoIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgb3V0IGd1ZXN0IE9TIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgaW4gZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1RyYW5zbWl0dGVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHNlbnQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHJlY2VpdmVkIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxSeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyByZWNlaXZlZCBlcnJvcnMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxUeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyBzZW50IGVycm9ycyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgY29sbGlzaW9ucyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48L1BlcmZvcm1hbmNlQ291bnRlcnM+PE1ldHJpY3MgcmVzb3VyY2VJZD0iL3N1YnNjcmlwdGlvbnMvMjU4NmM2NGItMzhiNC00NTI3LWExNDAtMDEyZDQ5ZGZjMDJjL3Jlc291cmNlR3JvdXBzL21pcS1henVyZS10ZXN0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL21pcS10ZXN0LXJoZWwxIj48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMUgiLz48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iLz48L01ldHJpY3M+PC9EaWFnbm9zdGljTW9uaXRvckNvbmZpZ3VyYXRpb24+PC9XYWRDZmc+\",\"StorageAccount\":\"miqazuretest18686\"},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": + \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\"\r\n }\r\n + \ ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": + \"eastus\",\r\n \"tags\": {\r\n \"Shutdown\": \"true\"\r\n },\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\",\r\n + \ \"name\": \"miq-test-rhel1\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:36 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"f006e6f9-0292-42cd-99fc-f72f194553c1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 3dab6aeb-8edd-4fd6-94e0-87c1f67fe8ea + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14964' + X-Ms-Correlation-Request-Id: + - d6bef216-27b1-45a6-8d61-e2d2730adcf7 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213836Z:d6bef216-27b1-45a6-8d61-e2d2730adcf7 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:36 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1390\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"98853f48-2806-4065-be57-cf9159550440\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.16.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-10-EB-AB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\"\r\n + \ },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:37 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1?api-version=2017-08-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14960' + X-Ms-Request-Id: + - 8fe774fd-963d-45da-8c6e-5ee77db6b53f + X-Ms-Correlation-Request-Id: + - 8fe774fd-963d-45da-8c6e-5ee77db6b53f + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213837Z:8fe774fd-963d-45da-8c6e-5ee77db6b53f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:36 GMT + Content-Length: + - '183' + body: + encoding: ASCII-8BIT + string: '{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1","name":"miq-azure-test1","location":"eastus","properties":{"provisioningState":"Succeeded"}}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:37 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute/locations/eastus/vmSizes?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4750,Microsoft.Compute/LowCostGet30Min;37898 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - a01ee855-cd28-46e4-b289-a34c3e0172d2 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14958' + X-Ms-Correlation-Request-Id: + - 7cd7c73b-a98c-4b5f-8118-f8e22aff62cf + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213837Z:7cd7c73b-a98c-4b5f-8118-f8e22aff62cf + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:37 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_B1ms\",\r\n + \ \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_B1s\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2ms\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2s\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_B4ms\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_B8ms\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11-1_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12-1_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12-2_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2s_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 65636,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1024000,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H8m\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1024000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16m\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16r\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16mr\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV6\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV12\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV24\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6s_v2\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12s_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24rs_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24s_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24r\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6s_v3\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12s_v3\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24rs_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24s_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"numberOfCores\": + 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 589824,\r\n \"memoryInMB\": 147456,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND6s\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND12s\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND24rs\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND24s\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_A10\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A11\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ }\r\n ]\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:38 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4748,Microsoft.Compute/LowCostGet30Min;37896 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - e2cb3633-f234-4729-9015-33378b43e805 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14966' + X-Ms-Correlation-Request-Id: + - cc862623-5483-40b7-9556-6adbf5bd3e13 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213848Z:cc862623-5483-40b7-9556-6adbf5bd3e13 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:47 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"properties\": {\r\n \"vmId\": \"03e8467b-baab-4867-9cc4-157336b7e2e4\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Basic_A0\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7.2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"miq-test-rhel1\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"miq-test-rhel1\",\r\n + \ \"adminUsername\": \"dberger\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true,\r\n \"storageUri\": \"https://miqazuretest18686.blob.core.windows.net/\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": + \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"settings\": {\"xmlCfg\":\"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxEaWFnbm9zdGljSW5mcmFzdHJ1Y3R1cmVMb2dzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIiBzY2hlZHVsZWRUcmFuc2ZlckxvZ0xldmVsRmlsdGVyPSJXYXJuaW5nIi8+PFBlcmZvcm1hbmNlQ291bnRlcnMgc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQnl0ZXMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGVyY2VudEF2YWlsYWJsZU1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iTWVtb3J5IHVzZWQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgcGVyY2VudGFnZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHVzZWQgYnkgY2FjaGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50UGVyU2Vjb25kIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFnZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2UgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1dyaXR0ZW5QZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2Ugd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iU3dhcCBhdmFpbGFibGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50QXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlN3YXAgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgaWRsZSB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iUGVyY2VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkNQVSB1c2VyIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50TmljZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIG5pY2UgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcml2aWxlZ2VkVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgcHJpdmlsZWdlZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIGludGVycnVwdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIERQQyB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFByb2Nlc3NvclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIHBlcmNlbnRhZ2UgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgSU8gd2FpdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xSZWFkQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCBndWVzdCBPUyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGUgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xUcmFuc2ZlcnNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXJzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcUmVhZHNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVdyaXRlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlNlY29uZHMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJEaXNrIHdyaXRlIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xBdmVyYWdlVHJhbnNmZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXIgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcXVldWUgbGVuZ3RoIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgb3V0IGd1ZXN0IE9TIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgaW4gZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1RyYW5zbWl0dGVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHNlbnQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHJlY2VpdmVkIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxSeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyByZWNlaXZlZCBlcnJvcnMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxUeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyBzZW50IGVycm9ycyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgY29sbGlzaW9ucyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48L1BlcmZvcm1hbmNlQ291bnRlcnM+PE1ldHJpY3MgcmVzb3VyY2VJZD0iL3N1YnNjcmlwdGlvbnMvMjU4NmM2NGItMzhiNC00NTI3LWExNDAtMDEyZDQ5ZGZjMDJjL3Jlc291cmNlR3JvdXBzL21pcS1henVyZS10ZXN0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL21pcS10ZXN0LXJoZWwxIj48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMUgiLz48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iLz48L01ldHJpY3M+PC9EaWFnbm9zdGljTW9uaXRvckNvbmZpZ3VyYXRpb24+PC9XYWRDZmc+\",\"StorageAccount\":\"miqazuretest18686\"},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": + \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\"\r\n }\r\n + \ ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": + \"eastus\",\r\n \"tags\": {\r\n \"Shutdown\": \"true\"\r\n },\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\",\r\n + \ \"name\": \"miq-test-rhel1\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:38:48 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/instanceView?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/GetInstanceView3Min;4797,Microsoft.Compute/GetInstanceView30Min;23852 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 7b364551-8c64-45b4-bd92-3b6cf3b9fc65 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14955' + X-Ms-Correlation-Request-Id: + - 2a50378f-33c7-43cc-80de-3505bd711efc + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213900Z:2a50378f-33c7-43cc-80de-3505bd711efc + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:38:59 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.16\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n + \ \"time\": \"2018-03-07T21:38:47+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.3.9027\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"miq-test-rhel1\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2018-01-17T18:00:29.9011002+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": + \"https://miqazuretest18686.blob.core.windows.net/bootdiagnostics-miqtestrh-03e8467b-baab-4867-9cc4-157336b7e2e4/miq-test-rhel1.03e8467b-baab-4867-9cc4-157336b7e2e4.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://miqazuretest18686.blob.core.windows.net/bootdiagnostics-miqtestrh-03e8467b-baab-4867-9cc4-157336b7e2e4/miq-test-rhel1.03e8467b-baab-4867-9cc4-157336b7e2e4.serialconsole.log\"\r\n + \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": + \"2.3.9027\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T18:02:26.9167163+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:00 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network/networkInterfaces?api-version=2017-11-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - a8313dc2-c104-4fd3-932e-ff315d19c8db + X-Ms-Correlation-Request-Id: + - a8313dc2-c104-4fd3-932e-ff315d19c8db + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213903Z:a8313dc2-c104-4fd3-932e-ff315d19c8db + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:03 GMT + Content-Length: + - '31614' + body: + encoding: ASCII-8BIT + string: '{"value":[{"name":"miqazure-coreos1235","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235","etag":"W/\"4a6546ab-a4c0-4d27-bccd-f6ebf3c405a2\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"fb0a5e60-a6c2-4bb8-a2f5-0c16216a49b0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235/ipConfigurations/ipconfig1","etag":"W/\"4a6546ab-a4c0-4d27-bccd-f6ebf3c405a2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.20.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/publicIPAddresses/miqazure-coreos1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/virtualNetworks/miq-azure-test3/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"rliadcyr3l1elbnsw4rabxqg1f.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkSecurityGroups/miqazure-coreos1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Compute/virtualMachines/miqazure-coreos1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"dbergerprov1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1","etag":"W/\"074dd836-918c-4e40-a118-94f0d366e175\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"ecdcd2f0-91bb-4c40-91cd-a3d76fc5e455","ipConfigurations":[{"name":"dbergerprov1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1","etag":"W/\"074dd836-918c-4e40-a118-94f0d366e175\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.9","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/dbergerprov1-publicIp"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST4/providers/Microsoft.Compute/virtualMachines/dbergerprov1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-rhel1390","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390","etag":"W/\"f006e6f9-0292-42cd-99fc-f72f194553c1\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"98853f48-2806-4065-be57-cf9159550440","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1","etag":"W/\"f006e6f9-0292-42cd-99fc-f72f194553c1\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-EB-AB","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-ubuntu1989","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989","etag":"W/\"64e07488-15a2-4cec-b84a-6fd5ef04323c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"134a6669-ac4a-4d08-a0db-387bc4c49537","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989/ipConfigurations/ipconfig1","etag":"W/\"64e07488-15a2-4cec-b84a-6fd5ef04323c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.17.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-ubuntu1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miqazuretest18687/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-ubuntu1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-ubuntu1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-win12610","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610","etag":"W/\"dd925ef5-33d1-402c-a0f4-18c78c2641f4\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"5c2eef2c-0b36-4277-a940-957ed4d13be0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610/ipConfigurations/ipconfig1","etag":"W/\"dd925ef5-33d1-402c-a0f4-18c78c2641f4\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.18.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-win12"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miqazuretest19881/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-win12"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-win12"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-winimg241","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241","etag":"W/\"4a17a745-16a9-42d9-88c9-17a518959525\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"8ed2f3b0-4a4b-49ae-9f1d-ff7890dbd396","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1","etag":"W/\"4a17a745-16a9-42d9-88c9-17a518959525\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.7","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqtestwinimg6202"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miqtestwinimg3696"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-winimg"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-centos1611","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611","etag":"W/\"26031ef6-bb55-4019-8185-2dd1edcb207c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f1760e49-9853-4fdc-acfc-4ea232b9ed76","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1","etag":"W/\"26031ef6-bb55-4019-8185-2dd1edcb207c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqazure-centos1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miqazure-centos1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miqazure-centos1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1","etag":"W/\"3a72d0c3-bfda-4da5-a61b-e8c33e43de79\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"23d804a8-b623-49e7-9c8d-1d64245bef1e","ipConfigurations":[{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1","etag":"W/\"3a72d0c3-bfda-4da5-a61b-e8c33e43de79\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.8","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqmismatch1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Compute/virtualMachines/miqmismatch1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"rspec-lb-a670","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670","etag":"W/\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"46cb8216-786e-408e-9d86-c0855b357349","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1","etag":"W/\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/rspec-lb-a"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"rspec-lb-b843","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843","etag":"W/\"76aabe0c-8678-43f0-81a5-2f15784a4b99\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3ef6fa01-ac34-43a1-8fd7-67c706b4d8ef","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1","etag":"W/\"76aabe0c-8678-43f0-81a5-2f15784a4b99\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.11","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-b-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-b-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/rspec-lb-b"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"spec0deply1nic0","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic0","etag":"W/\"b817491c-aab8-4aab-b41d-b07bfffa5639\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"80ad9866-071d-4e3f-91d0-d47954eccee0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic0/ipConfigurations/ipconfig1","etag":"W/\"b817491c-aab8-4aab-b41d-b07bfffa5639\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/spec0deply1vnet/subnets/Subnet-1"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/backendAddressPools/BackendPool1"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/inboundNatRules/RDP-VM0"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/spec0deply1vm0"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"spec0deply1nic1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic1","etag":"W/\"2ec58a0b-4c03-4d0a-b788-9daffd54e7b2\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"57bbf7aa-d6c4-4f56-8f6a-089d15334221","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic1/ipConfigurations/ipconfig1","etag":"W/\"2ec58a0b-4c03-4d0a-b788-9daffd54e7b2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/spec0deply1vnet/subnets/Subnet-1"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/backendAddressPools/BackendPool1"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/inboundNatRules/RDP-VM1"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/spec0deply1vm1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqmismatch2656","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqmismatch2656","etag":"W/\"fef6a836-2802-4897-90c3-b3d71f133384\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"969dde6c-73c0-4340-877d-2b5fe2060026","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqmismatch2656/ipConfigurations/ipconfig1","etag":"W/\"fef6a836-2802-4897-90c3-b3d71f133384\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"172.23.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/virtualNetworks/miqazuretest33606/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkSecurityGroups/miqmismatch2-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Compute/virtualMachines/miqmismatch2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-linux-manag944","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944","etag":"W/\"b6339880-8ead-4c9e-b5c0-f38c4f8612d5\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"c5e8b90e-5a78-49b0-b224-b70ed3fb45e5","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944/ipConfigurations/ipconfig1","etag":"W/\"b6339880-8ead-4c9e-b5c0-f38c4f8612d5\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"172.25.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqazure-linux-managed-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miq-azure-test2/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkSecurityGroups/miqazure-linux-managed-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Compute/virtualMachines/miqazure-linux-managed"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"jf-metrics-2751","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751","etag":"W/\"c5f6f02a-b17c-4f34-882b-11c7adef0b44\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"207a58d3-f18d-4dab-8168-919877297a52","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751/ipConfigurations/ipconfig1","etag":"W/\"c5f6f02a-b17c-4f34-882b-11c7adef0b44\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.7","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-2"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/jf-metrics-2"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/jf-metrics-2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"jf-metrics-3421","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421","etag":"W/\"0b6f160b-ad10-48f8-9d0c-657193bb823f\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"b8b345e8-a353-4700-992e-be48a717b4e2","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421/ipConfigurations/ipconfig1","etag":"W/\"0b6f160b-ad10-48f8-9d0c-657193bb823f\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.8","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-3"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/jf-metrics-3"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/jf-metrics-3"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-oraclelinux310","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310","etag":"W/\"54cd4fe1-3ed5-4a8c-bc8d-527679c7a631\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"6a3fc1d7-4532-4ca0-b5c2-546cc8f7f313","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310/ipConfigurations/ipconfig1","etag":"W/\"54cd4fe1-3ed5-4a8c-bc8d-527679c7a631\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/miqazure-sharednsg1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/miqazure-oraclelinux1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-oraclelinux993","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993","etag":"W/\"a9432274-7b40-4eb3-a64f-a04267a423ff\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"75d8ed14-e0ae-4d84-99f6-e3f43d073e76","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993/ipConfigurations/ipconfig1","etag":"W/\"a9432274-7b40-4eb3-a64f-a04267a423ff\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux2"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/miqazure-sharednsg1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/miqazure-oraclelinux2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:03 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network/publicIPAddresses?api-version=2017-11-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - bd1ae883-541a-4731-89a4-2d6be30c65e2 + X-Ms-Correlation-Request-Id: + - bd1ae883-541a-4731-89a4-2d6be30c65e2 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213905Z:bd1ae883-541a-4731-89a4-2d6be30c65e2 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:05 GMT + Content-Length: + - '13978' + body: + encoding: ASCII-8BIT + string: '{"value":[{"name":"miqazure-coreos1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/publicIPAddresses/miqazure-coreos1","etag":"W/\"da64b64b-a755-4389-a2f3-5cba32f18c06\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"28617ed1-0270-4b39-873a-c3b48b3deef1","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"dbergerprov1-publicIp","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/dbergerprov1-publicIp","etag":"W/\"3d984c69-3f35-41ce-bdfc-8d207053a6a9\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"eb0e8804-e169-44ac-bb47-0929370977d2","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"ladas_test","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/ladas_test","etag":"W/\"32e21623-9a1b-4c40-80f4-6a350aa237a7\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3daa5f66-5a01-4242-b95b-c4e0ee8f0c36","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[]},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-rhel1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1","etag":"W/\"054052bb-11ff-4f6e-ac1a-3427c2fd17aa\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f6cfc635-411e-48ce-a627-39a2fc0d3168","ipAddress":"52.224.165.15","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-ubuntu1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-ubuntu1","etag":"W/\"bcae50c5-146f-4fcb-a461-7c1030ba7b74\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"e272bd74-f661-484f-b223-88dd128a4049","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-win12","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-win12","etag":"W/\"56ce00f4-50d7-4682-9ee8-6836bf5c0ea6\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"b9200977-8147-40a5-83c2-d5892d5ddedc","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-centos1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqazure-centos1","etag":"W/\"734a3944-a880-444c-8c92-cace6e28e303\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"475a66f0-9e89-4226-a9f0-9baaaf31d619","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqtestwinimg6202","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqtestwinimg6202","etag":"W/\"b656279a-26ff-4021-94bb-263420cf494e\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"fb942169-855b-44f8-b12f-fd63e961b140","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb-a-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip","etag":"W/\"3ba30997-7d2f-470c-96f6-301158e93b7c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3c605f75-23c0-46ab-ba2b-6fd4430140fd","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb-b-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-b-ip","etag":"W/\"cf6012c7-3d47-438f-84d7-332ad1ef4500\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"5d1a2425-a351-4c0f-bc87-37e6500bff22","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb1-LoadBalancerFrontEnd","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb1-LoadBalancerFrontEnd","etag":"W/\"a38434c8-7b23-4092-b7c6-402238eac0dc\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f28e0f25-b372-4edf-97d9-13a9e3b4ba2d","ipAddress":"40.71.82.83","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb2-publicip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb2-publicip","etag":"W/\"cddd97d1-6111-4477-8a00-3dc885237a1d\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"83e7257d-ab94-4229-8eb5-4798f37ef28d","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb2/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"spec0deply1ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/spec0deply1ip","etag":"W/\"2080997a-38a6-420d-ba86-e9582e1331c7\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"a08b891e-e45a-4970-aefc-f6c996989490","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"dnsSettings":{"domainNameLabel":"spec0deply1dns","fqdn":"spec0deply1dns.eastus.cloudapp.azure.com"},"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-linux-managed-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqazure-linux-managed-ip","etag":"W/\"0efc9684-fb7d-4fb7-b9b9-f33dbac04a28\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"6a2a9142-26e8-45cd-93bf-7318192f3528","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqmismatch1","etag":"W/\"9b8b1729-21c4-4c53-94f2-15715315ad73\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"a97c71d0-6b78-4ffe-8e5c-0be1ee653f8c","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"dnsSettings":{"domainNameLabel":"miqmismatch1","fqdn":"miqmismatch1.eastus.cloudapp.azure.com"},"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"jf-metrics-2","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-2","etag":"W/\"b43ebe01-574c-4454-87eb-3401fbcf36f2\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"e446f3e4-9410-4d7f-bb04-2652096359de","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"jf-metrics-3","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-3","etag":"W/\"a6ee7100-6202-4ae2-a2db-f828abec8af9\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"de5995a4-15c1-40ba-ad78-67e70a92654b","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-oraclelinux1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux1","etag":"W/\"98bee7b4-2fcc-471d-b5ce-92850e6c3d6b\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"f2ac7c18-520b-4b42-94e7-da264a842f41","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-oraclelinux2","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux2","etag":"W/\"0865cebc-95b9-49d2-9f10-21dbafb23cac\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"2f4e1091-46f0-474c-a697-8dbcea6ba2a6","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:05 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - bbfe4cdd-f7cb-4428-93fe-f2d9436285d1 + X-Ms-Correlation-Request-Id: + - bbfe4cdd-f7cb-4428-93fe-f2d9436285d1 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213907Z:bbfe4cdd-f7cb-4428-93fe-f2d9436285d1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:07 GMT + Content-Length: + - '8649' + body: + encoding: ASCII-8BIT + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest18686","name":"miqazuretest18686","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:22:54.7808677Z","primaryEndpoints":{"blob":"https://miqazuretest18686.blob.core.windows.net/","queue":"https://miqazuretest18686.queue.core.windows.net/","table":"https://miqazuretest18686.table.core.windows.net/","file":"https://miqazuretest18686.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest14047","name":"miqazuretest14047","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:30:25.7028008Z","primaryEndpoints":{"blob":"https://miqazuretest14047.blob.core.windows.net/","queue":"https://miqazuretest14047.queue.core.windows.net/","table":"https://miqazuretest14047.table.core.windows.net/","file":"https://miqazuretest14047.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/rspeclb","name":"rspeclb","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-09-02T16:29:11.6823797Z","primaryEndpoints":{"blob":"https://rspeclb.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/spec0deply1stor","name":"spec0deply1stor","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-04-04T23:05:07.8274794Z","primaryEndpoints":{"blob":"https://spec0deply1stor.blob.core.windows.net/","queue":"https://spec0deply1stor.queue.core.windows.net/","table":"https://spec0deply1stor.table.core.windows.net/","file":"https://spec0deply1stor.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Storage/storageAccounts/miqazuretest26611","name":"miqazuretest26611","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2211656Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2211656Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-05-02T18:01:29.2743021Z","primaryEndpoints":{"blob":"https://miqazuretest26611.blob.core.windows.net/","queue":"https://miqazuretest26611.queue.core.windows.net/","table":"https://miqazuretest26611.table.core.windows.net/","file":"https://miqazuretest26611.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest16487","name":"miqazuretest16487","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:26:55.3231669Z","primaryEndpoints":{"blob":"https://miqazuretest16487.blob.core.windows.net/","queue":"https://miqazuretest16487.queue.core.windows.net/","table":"https://miqazuretest16487.table.core.windows.net/","file":"https://miqazuretest16487.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Storage/storageAccounts/miqazuretest32946","name":"miqazuretest32946","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"delete":"false"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.0404359Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.0404359Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T21:18:37.0793411Z","primaryEndpoints":{"blob":"https://miqazuretest32946.blob.core.windows.net/","queue":"https://miqazuretest32946.queue.core.windows.net/","table":"https://miqazuretest32946.table.core.windows.net/","file":"https://miqazuretest32946.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Storage/storageAccounts/miqazureshared1","name":"miqazureshared1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.1935084Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.1935084Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T20:42:52.498085Z","primaryEndpoints":{"blob":"https://miqazureshared1.blob.core.windows.net/","queue":"https://miqazureshared1.queue.core.windows.net/","table":"https://miqazureshared1.table.core.windows.net/","file":"https://miqazureshared1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://miqazureshared1-secondary.blob.core.windows.net/","queue":"https://miqazureshared1-secondary.queue.core.windows.net/","table":"https://miqazureshared1-secondary.table.core.windows.net/"}}}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:08 GMT +- request: + method: post + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest18686/listKeys?api-version=2017-10-01 + body: + encoding: ASCII-8BIT + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + Content-Length: + - '0' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - bab166bf-f8e0-4e40-80d4-5dbc2d7225ed + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - '1189' + X-Ms-Correlation-Request-Id: + - 7e03cb88-42b1-4c1a-a050-090422198e6a + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213908Z:7e03cb88-42b1-4c1a-a050-090422198e6a + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:07 GMT + body: + encoding: ASCII-8BIT + string: '{"keys":[{"keyName":"key1","value":"32PV5jeBt8nw1XvFbZokY26SXchbD6H2tw/YrteEYVE0kpMLKrZ74VrwaIjDyucdi/RxDaAlf7dJIilLS7muNw==","permissions":"Full"},{"keyName":"key2","value":"Eo5x9CQJL1/wl6Tkj5N7M5eEdw6Hym6AeyTt3xjcDl30sV8Iadro6ywZzOHQwNDlmrDaBF6x2a9ZFL7zswxQ7w==","permissions":"Full"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:08 GMT +- request: + method: head + uri: https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - '' + X-Ms-Date: + - Wed, 07 Mar 2018 21:39:08 GMT + X-Ms-Version: + - '2016-05-31' + Auth-String: + - 'true' + Verb: + - HEAD + Authorization: + - SharedKey miqazuretest18686:mUlZrJ7ovQjgLsNYdCSBv2+y9Oygtfwx97fPEYGo06g= + response: + status: + code: 200 + message: OK + headers: + Content-Length: + - '32212255232' + Content-Type: + - application/octet-stream + Content-Md5: + - dQL+XHjFNPdoMEweI63fwQ== + Last-Modified: + - Wed, 07 Mar 2018 21:39:08 GMT + Accept-Ranges: + - bytes + Etag: + - '"0x8D58473DB734959"' + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Request-Id: + - 6a61fefd-001e-009c-305c-b65dc2000000 + X-Ms-Version: + - '2016-05-31' + X-Ms-Meta-Microsoftazurecompute-Resourcegroupname: + - miq-azure-test1 + X-Ms-Meta-Microsoftazurecompute-Vmname: + - miq-test-rhel1 + X-Ms-Meta-Microsoftazurecompute-Diskid: + - 0ea91415-9058-46c6-9792-3afcb4da976f + X-Ms-Meta-Microsoftazurecompute-Diskname: + - miq-test-rhel1 + X-Ms-Meta-Microsoftazurecompute-Disktype: + - OSDisk + X-Ms-Lease-Status: + - locked + X-Ms-Lease-State: + - leased + X-Ms-Lease-Duration: + - infinite + X-Ms-Blob-Type: + - PageBlob + X-Ms-Blob-Sequence-Number: + - '371' + X-Ms-Copy-Id: + - b967ea05-82a2-405a-8df9-4615d59df4eb + X-Ms-Copy-Source: + - https://ardfepirv2bl5prdstr06.blob.core.windows.net/a879bbefc56a43abb0ce65052aac09f3/rhel-72-20160302?sv=2014-02-14&sr=b&si=PirCacheAccountPublisherContainerPolicy&sig=2TQ3SKHqVnqe4jVKB4qMCBOphv2nYelKworI7pfckrs%3D + X-Ms-Copy-Status: + - success + X-Ms-Copy-Progress: + - 32212255232/32212255232 + X-Ms-Copy-Completion-Time: + - Fri, 18 Mar 2016 17:23:28 GMT + X-Ms-Server-Encrypted: + - 'false' + Date: + - Wed, 07 Mar 2018 21:39:09 GMT + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:09 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"5ad0e691-263e-42ca-8a93-833bd4dbf13f" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 06b14d33-a3aa-48cd-869d-c1584344f620 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14957' + X-Ms-Correlation-Request-Id: + - 2cfeeaf0-1029-410e-a3fa-d4e9e50d900f + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213909Z:2cfeeaf0-1029-410e-a3fa-d4e9e50d900f + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:09 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n \"type\": + \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f4a4a6a5-e2e8-47bd-b46f-00592f8fce53\",\r\n \"securityRules\": + [\r\n {\r\n \"name\": \"default-allow-ssh\",\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/default-allow-ssh\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"rhel1-inbound1\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/rhel1-inbound1\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"80\",\r\n + \ \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"rhel1-inbound2\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/rhel1-inbound2\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"443\",\r\n + \ \"destinationPortRange\": \"443\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n + \ {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowVnetInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/DenyAllInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n + \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n + \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowVnetOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to all VMs + in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": + \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowInternetOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/DenyAllOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": + [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n + \ ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"\r\n + \ }\r\n ]\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:10 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"fceae1ac-4620-482a-bc6d-79c867179ae5" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 620e993c-5476-475a-be11-38b59ee057ee + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14945' + X-Ms-Correlation-Request-Id: + - e96b3eb9-d353-40d7-8d2f-52ffec847152 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213911Z:e96b3eb9-d353-40d7-8d2f-52ffec847152 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:10 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-azure-test1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1\",\r\n + \ \"etag\": \"W/\\\"fceae1ac-4620-482a-bc6d-79c867179ae5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"d74c1e5f-50e4-4c8a-a7fe-78eaddc6b915\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.16.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\",\r\n + \ \"etag\": \"W/\\\"fceae1ac-4620-482a-bc6d-79c867179ae5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.16.0.0/24\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": + [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": + false\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:12 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"f006e6f9-0292-42cd-99fc-f72f194553c1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - bbfd0464-632d-45ae-ab57-100abdf5dcc5 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14967' + X-Ms-Correlation-Request-Id: + - 2f3cdfea-dc23-4bee-bf66-b5c94d64fa72 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213912Z:2f3cdfea-dc23-4bee-bf66-b5c94d64fa72 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:11 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1390\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"98853f48-2806-4065-be57-cf9159550440\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.16.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-10-EB-AB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\"\r\n + \ },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:12 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTg0MTMsIm5iZiI6MTUyMDQ1ODQxMywiZXhwIjoxNTIwNDYyMzEzLCJhaW8iOiJZMk5nWVBnV2M5Kyt6cm9pb1AzbytmbDY5ZHVzQUE9PSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiMGp0RFAyaF9qRTZCWElFcFZRRUJBQSIsInZlciI6IjEuMCJ9.ng5iKxVNdvpw-iFAJIZLqJnHh4YRa_W8we9_V4KIgwD7SM0xNdm77nU1ief9_NdNjRwYNSIxVjXEK-43bggbQc4iJVYG3leJWElQOT919xD_GW2fRJxZOg8QS904YkTwUruMQm5KsSuY5B1IKtBEnjME0b3h0LdUaH8S8pW9YH2HI4hTsAvJjIE77Y0O50EhkcrRi_CIdfccw-ZWjZd9umRNsYhFeGYN001WWVq6DfiIpgdXyucWx3FbFdQANBpICjbQPiodMrQ4mXunytxknDPpAIJGy0pYX3o-IBaaXDVYPVbls05LjpoAHDVWtZo_p03P0ppa3yBfePl8wWCIow + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"054052bb-11ff-4f6e-ac1a-3427c2fd17aa" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 55e40701-1f6b-49c2-b6bf-3d7449805832 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14963' + X-Ms-Correlation-Request-Id: + - 92c5a9a0-9ff3-4047-8bd0-47012ca01cfb + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213913Z:92c5a9a0-9ff3-4047-8bd0-47012ca01cfb + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:39:12 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\",\r\n + \ \"etag\": \"W/\\\"054052bb-11ff-4f6e-ac1a-3427c2fd17aa\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f6cfc635-411e-48ce-a627-39a2fc0d3168\",\r\n \"ipAddress\": + \"52.224.165.15\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n + \ \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:39:13 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_write_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_write_EndRequest.yml new file mode 100644 index 00000000..998ec9b6 --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualMachines_write_EndRequest.yml @@ -0,0 +1,3959 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - a8abcbbe-2808-4c6a-ad1a-362801fe0000 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzHw7rQ0g9B_Ye0_Ws6ZFoVL0DSbr1Kk5pyoc-tjHBcsDZ1_Rzb7QDswJ1ZyQKh-Rk6yWW-_4n76jZ5-kwb3JBRrolZxkByt_3RN9jobabHMYU7YR-3w0VCs3uXNsYVVOT3wPKv03potMrtMO4AeGeKamB0_boZs7kCuwTPOJ0eJ0gAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=008; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 21:36:56 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3599","ext_expires_in":"0","expires_on":"1520462217","not_before":"1520458317","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg"}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:36:57 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14998' + X-Ms-Request-Id: + - 06ffd38a-1a48-48c9-9f7a-7215306d3a1b + X-Ms-Correlation-Request-Id: + - 06ffd38a-1a48-48c9-9f7a-7215306d3a1b + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213657Z:06ffd38a-1a48-48c9-9f7a-7215306d3a1b + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:36:56 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:36:58 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14955' + X-Ms-Request-Id: + - e838d9ca-51ab-4299-8381-5647080d2ecb + X-Ms-Correlation-Request-Id: + - e838d9ca-51ab-4299-8381-5647080d2ecb + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213659Z:e838d9ca-51ab-4299-8381-5647080d2ecb + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:36:58 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:36:59 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4755,Microsoft.Compute/LowCostGet30Min;37930 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 8fc4446a-1b36-4969-8561-0613a1e1a2fb + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14968' + X-Ms-Correlation-Request-Id: + - 479ad25f-8642-41fc-8b13-1bc7a8302a78 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213701Z:479ad25f-8642-41fc-8b13-1bc7a8302a78 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:00 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"properties\": {\r\n \"vmId\": \"03e8467b-baab-4867-9cc4-157336b7e2e4\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Basic_A0\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7.2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"miq-test-rhel1\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"miq-test-rhel1\",\r\n + \ \"adminUsername\": \"dberger\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true,\r\n \"storageUri\": \"https://miqazuretest18686.blob.core.windows.net/\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": + \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"settings\": {\"xmlCfg\":\"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxEaWFnbm9zdGljSW5mcmFzdHJ1Y3R1cmVMb2dzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIiBzY2hlZHVsZWRUcmFuc2ZlckxvZ0xldmVsRmlsdGVyPSJXYXJuaW5nIi8+PFBlcmZvcm1hbmNlQ291bnRlcnMgc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQnl0ZXMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGVyY2VudEF2YWlsYWJsZU1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iTWVtb3J5IHVzZWQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgcGVyY2VudGFnZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHVzZWQgYnkgY2FjaGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50UGVyU2Vjb25kIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFnZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2UgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1dyaXR0ZW5QZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2Ugd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iU3dhcCBhdmFpbGFibGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50QXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlN3YXAgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgaWRsZSB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iUGVyY2VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkNQVSB1c2VyIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50TmljZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIG5pY2UgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcml2aWxlZ2VkVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgcHJpdmlsZWdlZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIGludGVycnVwdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIERQQyB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFByb2Nlc3NvclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIHBlcmNlbnRhZ2UgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgSU8gd2FpdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xSZWFkQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCBndWVzdCBPUyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGUgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xUcmFuc2ZlcnNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXJzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcUmVhZHNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVdyaXRlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlNlY29uZHMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJEaXNrIHdyaXRlIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xBdmVyYWdlVHJhbnNmZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXIgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcXVldWUgbGVuZ3RoIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgb3V0IGd1ZXN0IE9TIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgaW4gZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1RyYW5zbWl0dGVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHNlbnQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHJlY2VpdmVkIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxSeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyByZWNlaXZlZCBlcnJvcnMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxUeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyBzZW50IGVycm9ycyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgY29sbGlzaW9ucyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48L1BlcmZvcm1hbmNlQ291bnRlcnM+PE1ldHJpY3MgcmVzb3VyY2VJZD0iL3N1YnNjcmlwdGlvbnMvMjU4NmM2NGItMzhiNC00NTI3LWExNDAtMDEyZDQ5ZGZjMDJjL3Jlc291cmNlR3JvdXBzL21pcS1henVyZS10ZXN0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL21pcS10ZXN0LXJoZWwxIj48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMUgiLz48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iLz48L01ldHJpY3M+PC9EaWFnbm9zdGljTW9uaXRvckNvbmZpZ3VyYXRpb24+PC9XYWRDZmc+\",\"StorageAccount\":\"miqazuretest18686\"},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": + \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\"\r\n }\r\n + \ ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": + \"eastus\",\r\n \"tags\": {\r\n \"Shutdown\": \"true\"\r\n },\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\",\r\n + \ \"name\": \"miq-test-rhel1\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:01 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"f006e6f9-0292-42cd-99fc-f72f194553c1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 36f5c3ad-0d42-490c-a9e1-dc2329186c85 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14950' + X-Ms-Correlation-Request-Id: + - 024e542c-4892-4575-8c5f-2bd207ebe6b6 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213704Z:024e542c-4892-4575-8c5f-2bd207ebe6b6 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:04 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1390\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"98853f48-2806-4065-be57-cf9159550440\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.16.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-10-EB-AB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\"\r\n + \ },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:05 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourcegroups/miq-azure-test1?api-version=2017-08-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14952' + X-Ms-Request-Id: + - 0f72c3a4-d6b1-46c1-9e24-ce5e2f9403af + X-Ms-Correlation-Request-Id: + - 0f72c3a4-d6b1-46c1-9e24-ce5e2f9403af + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213707Z:0f72c3a4-d6b1-46c1-9e24-ce5e2f9403af + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:07 GMT + Content-Length: + - '183' + body: + encoding: ASCII-8BIT + string: '{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1","name":"miq-azure-test1","location":"eastus","properties":{"provisioningState":"Succeeded"}}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:08 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute/locations/eastus/vmSizes?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4753,Microsoft.Compute/LowCostGet30Min;37928 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - da1c2010-36a8-4ebd-a7b7-ae10cf11ef4b + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14852' + X-Ms-Correlation-Request-Id: + - 7d92fa43-1778-469e-b3b7-44dc102b8e0f + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213708Z:7d92fa43-1778-469e-b3b7-44dc102b8e0f + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:08 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_B1ms\",\r\n + \ \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_B1s\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2ms\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_B2s\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_B4ms\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_B8ms\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11-1_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12-1_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12-2_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2s_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n + \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": + 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 65636,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1024000,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H8m\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1024000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16m\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16r\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_H16mr\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 2048000,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV6\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV12\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_NV24\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6s_v2\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12s_v2\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24rs_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24s_v2\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24r\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": + 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC6s_v3\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC12s_v3\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24rs_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_NC24s_v3\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"numberOfCores\": + 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 16384,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n + \ },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"numberOfCores\": + 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 32768,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n + \ },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 65536,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n + \ },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 131072,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"numberOfCores\": + 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 262144,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\": + 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"numberOfCores\": + 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 589824,\r\n \"memoryInMB\": 147456,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND6s\",\r\n \"numberOfCores\": + 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 344064,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 12\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND12s\",\r\n \"numberOfCores\": + 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 688128,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 24\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND24rs\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_ND24s\",\r\n \"numberOfCores\": + 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 1376256,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A8\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A9\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ },\r\n {\r\n \"name\": \"Standard_A10\",\r\n \"numberOfCores\": + 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n + \ },\r\n {\r\n \"name\": \"Standard_A11\",\r\n \"numberOfCores\": + 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": + 391168,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n + \ }\r\n ]\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:08 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/LowCostGet3Min;4752,Microsoft.Compute/LowCostGet30Min;37927 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 4fe02f4c-3923-4d55-9669-de69541699d3 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14958' + X-Ms-Correlation-Request-Id: + - 1c93fde2-bb86-4da3-81e8-99dcb3ddfdef + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213713Z:1c93fde2-bb86-4da3-81e8-99dcb3ddfdef + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:12 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"properties\": {\r\n \"vmId\": \"03e8467b-baab-4867-9cc4-157336b7e2e4\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Basic_A0\"\r\n },\r\n + \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": + \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7.2\",\r\n + \ \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": + \"Linux\",\r\n \"name\": \"miq-test-rhel1\",\r\n \"createOption\": + \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd\"\r\n + \ },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": + []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"miq-test-rhel1\",\r\n + \ \"adminUsername\": \"dberger\",\r\n \"linuxConfiguration\": {\r\n + \ \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": + []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n \"enabled\": + true,\r\n \"storageUri\": \"https://miqazuretest18686.blob.core.windows.net/\"\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n + \ \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": + \"Microsoft.OSTCExtensions\",\r\n \"type\": \"LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"settings\": {\"xmlCfg\":\"PFdhZENmZz48RGlhZ25vc3RpY01vbml0b3JDb25maWd1cmF0aW9uIG92ZXJhbGxRdW90YUluTUI9IjQwOTYiPjxEaWFnbm9zdGljSW5mcmFzdHJ1Y3R1cmVMb2dzIHNjaGVkdWxlZFRyYW5zZmVyUGVyaW9kPSJQVDFNIiBzY2hlZHVsZWRUcmFuc2ZlckxvZ0xldmVsRmlsdGVyPSJXYXJuaW5nIi8+PFBlcmZvcm1hbmNlQ291bnRlcnMgc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlTWVtb3J5IiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQnl0ZXMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcUGVyY2VudEF2YWlsYWJsZU1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iTWVtb3J5IHVzZWQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50VXNlZE1lbW9yeSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW1vcnkgcGVyY2VudGFnZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkQnlDYWNoZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJNZW0uIHVzZWQgYnkgY2FjaGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1BlclNlYyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50UGVyU2Vjb25kIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFnZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1JlYWRQZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2UgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQYWdlc1dyaXR0ZW5QZXJTZWMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlBhZ2Ugd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcQXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkJ5dGVzIj48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iU3dhcCBhdmFpbGFibGUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE1lbW9yeVxQZXJjZW50QXZhaWxhYmxlU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgYXZhaWxhYmxlIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxNZW1vcnlcVXNlZFN3YXAiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IlN3YXAgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTWVtb3J5XFBlcmNlbnRVc2VkU3dhcCIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJTd2FwIHBlcmNlbnQgdXNlZCIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRJZGxlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgaWRsZSB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFVzZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iUGVyY2VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkNQVSB1c2VyIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50TmljZVRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIG5pY2UgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUHJvY2Vzc29yXFBlcmNlbnRQcml2aWxlZ2VkVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgcHJpdmlsZWdlZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudEludGVycnVwdFRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIGludGVycnVwdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudERQQ1RpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIERQQyB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQcm9jZXNzb3JcUGVyY2VudFByb2Nlc3NvclRpbWUiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJQZXJjZW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iQ1BVIHBlcmNlbnRhZ2UgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFByb2Nlc3NvclxQZXJjZW50SU9XYWl0VGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlBlcmNlbnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJDUFUgSU8gd2FpdCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xSZWFkQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCBndWVzdCBPUyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXFdyaXRlQnl0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlc1BlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGUgZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xUcmFuc2ZlcnNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXJzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcUmVhZHNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZHMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xXcml0ZXNQZXJTZWNvbmQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudFBlclNlY29uZCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgd3JpdGVzIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVJlYWRUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcmVhZCB0aW1lIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxQaHlzaWNhbERpc2tcQXZlcmFnZVdyaXRlVGltZSIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IlNlY29uZHMiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJEaXNrIHdyaXRlIHRpbWUiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXFBoeXNpY2FsRGlza1xBdmVyYWdlVHJhbnNmZXJUaW1lIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iU2Vjb25kcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgdHJhbnNmZXIgdGltZSIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcUGh5c2ljYWxEaXNrXEF2ZXJhZ2VEaXNrUXVldWVMZW5ndGgiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9IkRpc2sgcXVldWUgbGVuZ3RoIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVHJhbnNtaXR0ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgb3V0IGd1ZXN0IE9TIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzUmVjZWl2ZWQiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgaW4gZ3Vlc3QgT1MiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1RyYW5zbWl0dGVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHNlbnQiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcUGFja2V0c1JlY2VpdmVkIiBzYW1wbGVSYXRlPSJQVDE1UyIgdW5pdD0iQ291bnQiPjxhbm5vdGF0aW9uIGRpc3BsYXlOYW1lPSJQYWNrZXRzIHJlY2VpdmVkIiBsb2NhbGU9ImVuLXVzIi8+PC9QZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uPjxQZXJmb3JtYW5jZUNvdW50ZXJDb25maWd1cmF0aW9uIGNvdW50ZXJTcGVjaWZpZXI9IlxOZXR3b3JrSW50ZXJmYWNlXEJ5dGVzVG90YWwiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJCeXRlcyI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgdG90YWwgYnl0ZXMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxSeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyByZWNlaXZlZCBlcnJvcnMiIGxvY2FsZT0iZW4tdXMiLz48L1BlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24+PFBlcmZvcm1hbmNlQ291bnRlckNvbmZpZ3VyYXRpb24gY291bnRlclNwZWNpZmllcj0iXE5ldHdvcmtJbnRlcmZhY2VcVG90YWxUeEVycm9ycyIgc2FtcGxlUmF0ZT0iUFQxNVMiIHVuaXQ9IkNvdW50Ij48YW5ub3RhdGlvbiBkaXNwbGF5TmFtZT0iUGFja2V0cyBzZW50IGVycm9ycyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48UGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbiBjb3VudGVyU3BlY2lmaWVyPSJcTmV0d29ya0ludGVyZmFjZVxUb3RhbENvbGxpc2lvbnMiIHNhbXBsZVJhdGU9IlBUMTVTIiB1bml0PSJDb3VudCI+PGFubm90YXRpb24gZGlzcGxheU5hbWU9Ik5ldHdvcmsgY29sbGlzaW9ucyIgbG9jYWxlPSJlbi11cyIvPjwvUGVyZm9ybWFuY2VDb3VudGVyQ29uZmlndXJhdGlvbj48L1BlcmZvcm1hbmNlQ291bnRlcnM+PE1ldHJpY3MgcmVzb3VyY2VJZD0iL3N1YnNjcmlwdGlvbnMvMjU4NmM2NGItMzhiNC00NTI3LWExNDAtMDEyZDQ5ZGZjMDJjL3Jlc291cmNlR3JvdXBzL21pcS1henVyZS10ZXN0MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL21pcS10ZXN0LXJoZWwxIj48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMUgiLz48TWV0cmljQWdncmVnYXRpb24gc2NoZWR1bGVkVHJhbnNmZXJQZXJpb2Q9IlBUMU0iLz48L01ldHJpY3M+PC9EaWFnbm9zdGljTW9uaXRvckNvbmZpZ3VyYXRpb24+PC9XYWRDZmc+\",\"StorageAccount\":\"miqazuretest18686\"},\r\n + \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": + \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/extensions/Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\"\r\n }\r\n + \ ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": + \"eastus\",\r\n \"tags\": {\r\n \"Shutdown\": \"true\"\r\n },\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\",\r\n + \ \"name\": \"miq-test-rhel1\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:13 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1/instanceView?api-version=2017-12-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Resource: + - Microsoft.Compute/GetInstanceView3Min;4799,Microsoft.Compute/GetInstanceView30Min;23854 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Served-By: + - 1a5498b5-371e-4a3a-8afd-84914b23eaad_131643344714001689 + X-Ms-Request-Id: + - 2d96340d-13c3-4020-a553-2f413a4792f4 + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14961' + X-Ms-Correlation-Request-Id: + - 2eb8a2da-dbfd-414b-bda6-1738306e8d2c + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213725Z:2eb8a2da-dbfd-414b-bda6-1738306e8d2c + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:24 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"WALinuxAgent-2.0.16\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n + \ \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n + \ \"time\": \"2018-03-07T21:37:06+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": + [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n + \ \"typeHandlerVersion\": \"2.3.9027\",\r\n \"status\": {\r\n + \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n }\r\n + \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"miq-test-rhel1\",\r\n + \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning + succeeded\",\r\n \"time\": \"2018-01-17T18:00:29.9011002+00:00\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"bootDiagnostics\": {\r\n \"consoleScreenshotBlobUri\": + \"https://miqazuretest18686.blob.core.windows.net/bootdiagnostics-miqtestrh-03e8467b-baab-4867-9cc4-157336b7e2e4/miq-test-rhel1.03e8467b-baab-4867-9cc4-157336b7e2e4.screenshot.bmp\",\r\n + \ \"serialConsoleLogBlobUri\": \"https://miqazuretest18686.blob.core.windows.net/bootdiagnostics-miqtestrh-03e8467b-baab-4867-9cc4-157336b7e2e4/miq-test-rhel1.03e8467b-baab-4867-9cc4-157336b7e2e4.serialconsole.log\"\r\n + \ },\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Insights.VMDiagnosticsSettings\",\r\n + \ \"type\": \"Microsoft.OSTCExtensions.LinuxDiagnostic\",\r\n \"typeHandlerVersion\": + \"2.3.9027\",\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n + \ }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": + \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": + \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T18:02:26.9167163+00:00\"\r\n + \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": + \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:25 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network/networkInterfaces?api-version=2017-11-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 044505bc-dc80-4f28-a2ae-8bd8a7d3e5ad + X-Ms-Correlation-Request-Id: + - 044505bc-dc80-4f28-a2ae-8bd8a7d3e5ad + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213727Z:044505bc-dc80-4f28-a2ae-8bd8a7d3e5ad + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:27 GMT + Content-Length: + - '31614' + body: + encoding: ASCII-8BIT + string: '{"value":[{"name":"miqazure-coreos1235","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235","etag":"W/\"4a6546ab-a4c0-4d27-bccd-f6ebf3c405a2\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"fb0a5e60-a6c2-4bb8-a2f5-0c16216a49b0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235/ipConfigurations/ipconfig1","etag":"W/\"4a6546ab-a4c0-4d27-bccd-f6ebf3c405a2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.20.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/publicIPAddresses/miqazure-coreos1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/virtualNetworks/miq-azure-test3/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"rliadcyr3l1elbnsw4rabxqg1f.dx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkSecurityGroups/miqazure-coreos1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Compute/virtualMachines/miqazure-coreos1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"dbergerprov1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1","etag":"W/\"074dd836-918c-4e40-a118-94f0d366e175\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"ecdcd2f0-91bb-4c40-91cd-a3d76fc5e455","ipConfigurations":[{"name":"dbergerprov1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1","etag":"W/\"074dd836-918c-4e40-a118-94f0d366e175\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.9","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/dbergerprov1-publicIp"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST4/providers/Microsoft.Compute/virtualMachines/dbergerprov1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-rhel1390","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390","etag":"W/\"f006e6f9-0292-42cd-99fc-f72f194553c1\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"98853f48-2806-4065-be57-cf9159550440","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1","etag":"W/\"f006e6f9-0292-42cd-99fc-f72f194553c1\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-10-EB-AB","enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-ubuntu1989","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989","etag":"W/\"64e07488-15a2-4cec-b84a-6fd5ef04323c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"134a6669-ac4a-4d08-a0db-387bc4c49537","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989/ipConfigurations/ipconfig1","etag":"W/\"64e07488-15a2-4cec-b84a-6fd5ef04323c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.17.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-ubuntu1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miqazuretest18687/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-ubuntu1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-ubuntu1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-win12610","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610","etag":"W/\"dd925ef5-33d1-402c-a0f4-18c78c2641f4\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"5c2eef2c-0b36-4277-a940-957ed4d13be0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610/ipConfigurations/ipconfig1","etag":"W/\"dd925ef5-33d1-402c-a0f4-18c78c2641f4\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.18.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-win12"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miqazuretest19881/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-win12"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-win12"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miq-test-winimg241","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241","etag":"W/\"4a17a745-16a9-42d9-88c9-17a518959525\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"8ed2f3b0-4a4b-49ae-9f1d-ff7890dbd396","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1","etag":"W/\"4a17a745-16a9-42d9-88c9-17a518959525\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.7","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqtestwinimg6202"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miqtestwinimg3696"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-winimg"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-centos1611","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611","etag":"W/\"26031ef6-bb55-4019-8185-2dd1edcb207c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f1760e49-9853-4fdc-acfc-4ea232b9ed76","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1","etag":"W/\"26031ef6-bb55-4019-8185-2dd1edcb207c\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqazure-centos1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miqazure-centos1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miqazure-centos1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1","etag":"W/\"3a72d0c3-bfda-4da5-a61b-e8c33e43de79\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"23d804a8-b623-49e7-9c8d-1d64245bef1e","ipConfigurations":[{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1","etag":"W/\"3a72d0c3-bfda-4da5-a61b-e8c33e43de79\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.8","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqmismatch1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Compute/virtualMachines/miqmismatch1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"rspec-lb-a670","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670","etag":"W/\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"46cb8216-786e-408e-9d86-c0855b357349","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1","etag":"W/\"cf3a0b0d-d596-4f33-bc31-749f92ba4f00\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/inboundNatRules/rspec-lb1-NAT"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-a-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/rspec-lb-a"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"rspec-lb-b843","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843","etag":"W/\"76aabe0c-8678-43f0-81a5-2f15784a4b99\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3ef6fa01-ac34-43a1-8fd7-67c706b4d8ef","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1","etag":"W/\"76aabe0c-8678-43f0-81a5-2f15784a4b99\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.16.0.11","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-b-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/backendAddressPools/rspec-lb-pool"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/rspec-lb-b-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/rspec-lb-b"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"spec0deply1nic0","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic0","etag":"W/\"b817491c-aab8-4aab-b41d-b07bfffa5639\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"80ad9866-071d-4e3f-91d0-d47954eccee0","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic0/ipConfigurations/ipconfig1","etag":"W/\"b817491c-aab8-4aab-b41d-b07bfffa5639\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/spec0deply1vnet/subnets/Subnet-1"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/backendAddressPools/BackendPool1"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/inboundNatRules/RDP-VM0"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/spec0deply1vm0"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"spec0deply1nic1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic1","etag":"W/\"2ec58a0b-4c03-4d0a-b788-9daffd54e7b2\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"57bbf7aa-d6c4-4f56-8f6a-089d15334221","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/spec0deply1nic1/ipConfigurations/ipconfig1","etag":"W/\"2ec58a0b-4c03-4d0a-b788-9daffd54e7b2\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.5","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/spec0deply1vnet/subnets/Subnet-1"},"primary":true,"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/backendAddressPools/BackendPool1"}],"loadBalancerInboundNatRules":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/inboundNatRules/RDP-VM1"}]}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/MIQ-AZURE-TEST1/providers/Microsoft.Compute/virtualMachines/spec0deply1vm1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqmismatch2656","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqmismatch2656","etag":"W/\"fef6a836-2802-4897-90c3-b3d71f133384\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"969dde6c-73c0-4340-877d-2b5fe2060026","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqmismatch2656/ipConfigurations/ipconfig1","etag":"W/\"fef6a836-2802-4897-90c3-b3d71f133384\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"172.23.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/virtualNetworks/miqazuretest33606/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkSecurityGroups/miqmismatch2-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Compute/virtualMachines/miqmismatch2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-linux-manag944","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944","etag":"W/\"b6339880-8ead-4c9e-b5c0-f38c4f8612d5\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"c5e8b90e-5a78-49b0-b224-b70ed3fb45e5","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944/ipConfigurations/ipconfig1","etag":"W/\"b6339880-8ead-4c9e-b5c0-f38c4f8612d5\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"172.25.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqazure-linux-managed-ip"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miq-azure-test2/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkSecurityGroups/miqazure-linux-managed-nsg"},"primary":true,"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Compute/virtualMachines/miqazure-linux-managed"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"jf-metrics-2751","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751","etag":"W/\"c5f6f02a-b17c-4f34-882b-11c7adef0b44\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"207a58d3-f18d-4dab-8168-919877297a52","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751/ipConfigurations/ipconfig1","etag":"W/\"c5f6f02a-b17c-4f34-882b-11c7adef0b44\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.7","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-2"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/jf-metrics-2"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/jf-metrics-2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"jf-metrics-3421","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421","etag":"W/\"0b6f160b-ad10-48f8-9d0c-657193bb823f\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"b8b345e8-a353-4700-992e-be48a717b4e2","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421/ipConfigurations/ipconfig1","etag":"W/\"0b6f160b-ad10-48f8-9d0c-657193bb823f\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.8","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-3"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/jf-metrics-3"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/jf-metrics-3"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-oraclelinux310","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310","etag":"W/\"54cd4fe1-3ed5-4a8c-bc8d-527679c7a631\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"6a3fc1d7-4532-4ca0-b5c2-546cc8f7f313","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310/ipConfigurations/ipconfig1","etag":"W/\"54cd4fe1-3ed5-4a8c-bc8d-527679c7a631\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.5","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux1"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/miqazure-sharednsg1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/miqazure-oraclelinux1"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"},{"name":"miqazure-oraclelinux993","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993","etag":"W/\"a9432274-7b40-4eb3-a64f-a04267a423ff\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"75d8ed14-e0ae-4d84-99f6-e3f43d073e76","ipConfigurations":[{"name":"ipconfig1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993/ipConfigurations/ipconfig1","etag":"W/\"a9432274-7b40-4eb3-a64f-a04267a423ff\"","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.19.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux2"},"subnet":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/virtualNetworks/miqazure-sharedvn1/subnets/default"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[]},"enableAcceleratedNetworking":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkSecurityGroups/miqazure-sharednsg1"},"virtualMachine":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Compute/virtualMachines/miqazure-oraclelinux2"},"virtualNetworkTapProvisioningState":"NotProvisioned"},"type":"Microsoft.Network/networkInterfaces"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:28 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network/publicIPAddresses?api-version=2017-11-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 883ea51e-8c8d-4884-8ea2-9b44c3f6d5b6 + X-Ms-Correlation-Request-Id: + - 883ea51e-8c8d-4884-8ea2-9b44c3f6d5b6 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213732Z:883ea51e-8c8d-4884-8ea2-9b44c3f6d5b6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:32 GMT + Content-Length: + - '13978' + body: + encoding: ASCII-8BIT + string: '{"value":[{"name":"miqazure-coreos1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/publicIPAddresses/miqazure-coreos1","etag":"W/\"da64b64b-a755-4389-a2f3-5cba32f18c06\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"28617ed1-0270-4b39-873a-c3b48b3deef1","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Network/networkInterfaces/miqazure-coreos1235/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"dbergerprov1-publicIp","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/dbergerprov1-publicIp","etag":"W/\"3d984c69-3f35-41ce-bdfc-8d207053a6a9\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"eb0e8804-e169-44ac-bb47-0929370977d2","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"ladas_test","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/ladas_test","etag":"W/\"32e21623-9a1b-4c40-80f4-6a350aa237a7\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3daa5f66-5a01-4242-b95b-c4e0ee8f0c36","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[]},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-rhel1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1","etag":"W/\"054052bb-11ff-4f6e-ac1a-3427c2fd17aa\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f6cfc635-411e-48ce-a627-39a2fc0d3168","ipAddress":"52.224.165.15","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-ubuntu1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-ubuntu1","etag":"W/\"bcae50c5-146f-4fcb-a461-7c1030ba7b74\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"e272bd74-f661-484f-b223-88dd128a4049","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-ubuntu1989/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miq-test-win12","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-win12","etag":"W/\"56ce00f4-50d7-4682-9ee8-6836bf5c0ea6\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"b9200977-8147-40a5-83c2-d5892d5ddedc","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-win12610/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-centos1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqazure-centos1","etag":"W/\"734a3944-a880-444c-8c92-cace6e28e303\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"475a66f0-9e89-4226-a9f0-9baaaf31d619","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqtestwinimg6202","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miqtestwinimg6202","etag":"W/\"b656279a-26ff-4021-94bb-263420cf494e\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"fb942169-855b-44f8-b12f-fd63e961b140","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb-a-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-a-ip","etag":"W/\"3ba30997-7d2f-470c-96f6-301158e93b7c\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"3c605f75-23c0-46ab-ba2b-6fd4430140fd","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb-b-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb-b-ip","etag":"W/\"cf6012c7-3d47-438f-84d7-332ad1ef4500\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"5d1a2425-a351-4c0f-bc87-37e6500bff22","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb1-LoadBalancerFrontEnd","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb1-LoadBalancerFrontEnd","etag":"W/\"a38434c8-7b23-4092-b7c6-402238eac0dc\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"f28e0f25-b372-4edf-97d9-13a9e3b4ba2d","ipAddress":"40.71.82.83","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb1/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"rspec-lb2-publicip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/rspec-lb2-publicip","etag":"W/\"cddd97d1-6111-4477-8a00-3dc885237a1d\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"83e7257d-ab94-4229-8eb5-4798f37ef28d","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/rspec-lb2/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"spec0deply1ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/spec0deply1ip","etag":"W/\"2080997a-38a6-420d-ba86-e9582e1331c7\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"a08b891e-e45a-4970-aefc-f6c996989490","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"dnsSettings":{"domainNameLabel":"spec0deply1dns","fqdn":"spec0deply1dns.eastus.cloudapp.azure.com"},"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/loadBalancers/spec0deply1lb/frontendIPConfigurations/LoadBalancerFrontEnd"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-linux-managed-ip","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqazure-linux-managed-ip","etag":"W/\"0efc9684-fb7d-4fb7-b9b9-f33dbac04a28\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"6a2a9142-26e8-45cd-93bf-7318192f3528","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/networkInterfaces/miqazure-linux-manag944/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqmismatch1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test4/providers/Microsoft.Network/publicIPAddresses/miqmismatch1","etag":"W/\"9b8b1729-21c4-4c53-94f2-15715315ad73\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"a97c71d0-6b78-4ffe-8e5c-0be1ee653f8c","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"dnsSettings":{"domainNameLabel":"miqmismatch1","fqdn":"miqmismatch1.eastus.cloudapp.azure.com"},"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"jf-metrics-2","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-2","etag":"W/\"b43ebe01-574c-4454-87eb-3401fbcf36f2\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"e446f3e4-9410-4d7f-bb04-2652096359de","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-2751/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"jf-metrics-3","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/jf-metrics-3","etag":"W/\"a6ee7100-6202-4ae2-a2db-f828abec8af9\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"de5995a4-15c1-40ba-ad78-67e70a92654b","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/jf-metrics-3421/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-oraclelinux1","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux1","etag":"W/\"98bee7b4-2fcc-471d-b5ce-92850e6c3d6b\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"f2ac7c18-520b-4b42-94e7-da264a842f41","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux310/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}},{"name":"miqazure-oraclelinux2","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/publicIPAddresses/miqazure-oraclelinux2","etag":"W/\"0865cebc-95b9-49d2-9f10-21dbafb23cac\"","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"2f4e1091-46f0-474c-a697-8dbcea6ba2a6","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Dynamic","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Network/networkInterfaces/miqazure-oraclelinux993/ipConfigurations/ipconfig1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Basic"}}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:33 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage/storageAccounts?api-version=2017-10-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 7b99b81a-09e2-4a95-8e8e-e3484631cdc4 + X-Ms-Correlation-Request-Id: + - 7b99b81a-09e2-4a95-8e8e-e3484631cdc4 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213735Z:7b99b81a-09e2-4a95-8e8e-e3484631cdc4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:34 GMT + Content-Length: + - '8649' + body: + encoding: ASCII-8BIT + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest18686","name":"miqazuretest18686","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:22:54.7808677Z","primaryEndpoints":{"blob":"https://miqazuretest18686.blob.core.windows.net/","queue":"https://miqazuretest18686.queue.core.windows.net/","table":"https://miqazuretest18686.table.core.windows.net/","file":"https://miqazuretest18686.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest14047","name":"miqazuretest14047","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:30:25.7028008Z","primaryEndpoints":{"blob":"https://miqazuretest14047.blob.core.windows.net/","queue":"https://miqazuretest14047.queue.core.windows.net/","table":"https://miqazuretest14047.table.core.windows.net/","file":"https://miqazuretest14047.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/rspeclb","name":"rspeclb","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-09-02T16:29:11.6823797Z","primaryEndpoints":{"blob":"https://rspeclb.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/spec0deply1stor","name":"spec0deply1stor","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-04-04T23:05:07.8274794Z","primaryEndpoints":{"blob":"https://spec0deply1stor.blob.core.windows.net/","queue":"https://spec0deply1stor.queue.core.windows.net/","table":"https://spec0deply1stor.table.core.windows.net/","file":"https://spec0deply1stor.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Storage/storageAccounts/miqazuretest26611","name":"miqazuretest26611","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2211656Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2211656Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-05-02T18:01:29.2743021Z","primaryEndpoints":{"blob":"https://miqazuretest26611.blob.core.windows.net/","queue":"https://miqazuretest26611.queue.core.windows.net/","table":"https://miqazuretest26611.table.core.windows.net/","file":"https://miqazuretest26611.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest16487","name":"miqazuretest16487","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.2055285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T17:26:55.3231669Z","primaryEndpoints":{"blob":"https://miqazuretest16487.blob.core.windows.net/","queue":"https://miqazuretest16487.queue.core.windows.net/","table":"https://miqazuretest16487.table.core.windows.net/","file":"https://miqazuretest16487.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test3/providers/Microsoft.Storage/storageAccounts/miqazuretest32946","name":"miqazuretest32946","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"delete":"false"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.0404359Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.0404359Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T21:18:37.0793411Z","primaryEndpoints":{"blob":"https://miqazuretest32946.blob.core.windows.net/","queue":"https://miqazuretest32946.queue.core.windows.net/","table":"https://miqazuretest32946.table.core.windows.net/","file":"https://miqazuretest32946.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test2/providers/Microsoft.Storage/storageAccounts/miqazureshared1","name":"miqazureshared1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"test":"true"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.1935084Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T02:02:55.1935084Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-18T20:42:52.498085Z","primaryEndpoints":{"blob":"https://miqazureshared1.blob.core.windows.net/","queue":"https://miqazureshared1.queue.core.windows.net/","table":"https://miqazureshared1.table.core.windows.net/","file":"https://miqazureshared1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://miqazureshared1-secondary.blob.core.windows.net/","queue":"https://miqazureshared1-secondary.queue.core.windows.net/","table":"https://miqazureshared1-secondary.table.core.windows.net/"}}}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:35 GMT +- request: + method: post + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Storage/storageAccounts/miqazuretest18686/listKeys?api-version=2017-10-01 + body: + encoding: ASCII-8BIT + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + Content-Length: + - '0' + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 5f59b48d-c5d8-46b6-9662-6d6ece672138 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - '1191' + X-Ms-Correlation-Request-Id: + - 4d0694c5-9dbc-405f-b148-0529504161e1 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213736Z:4d0694c5-9dbc-405f-b148-0529504161e1 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:35 GMT + body: + encoding: ASCII-8BIT + string: '{"keys":[{"keyName":"key1","value":"32PV5jeBt8nw1XvFbZokY26SXchbD6H2tw/YrteEYVE0kpMLKrZ74VrwaIjDyucdi/RxDaAlf7dJIilLS7muNw==","permissions":"Full"},{"keyName":"key2","value":"Eo5x9CQJL1/wl6Tkj5N7M5eEdw6Hym6AeyTt3xjcDl30sV8Iadro6ywZzOHQwNDlmrDaBF6x2a9ZFL7zswxQ7w==","permissions":"Full"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:36 GMT +- request: + method: head + uri: https://miqazuretest18686.blob.core.windows.net/vhds/miq-test-rhel12016218112243.vhd + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - '' + X-Ms-Date: + - Wed, 07 Mar 2018 21:37:36 GMT + X-Ms-Version: + - '2016-05-31' + Auth-String: + - 'true' + Verb: + - HEAD + Authorization: + - SharedKey miqazuretest18686:ZeZl2HcY8awsyGJoF+URnesHKmbPmPLDMiBLhpSHA94= + response: + status: + code: 200 + message: OK + headers: + Content-Length: + - '32212255232' + Content-Type: + - application/octet-stream + Content-Md5: + - dQL+XHjFNPdoMEweI63fwQ== + Last-Modified: + - Wed, 07 Mar 2018 21:37:35 GMT + Accept-Ranges: + - bytes + Etag: + - '"0x8D58473A45CAD2A"' + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Request-Id: + - 1bd51486-001e-0103-7c5c-b6632d000000 + X-Ms-Version: + - '2016-05-31' + X-Ms-Meta-Microsoftazurecompute-Resourcegroupname: + - miq-azure-test1 + X-Ms-Meta-Microsoftazurecompute-Vmname: + - miq-test-rhel1 + X-Ms-Meta-Microsoftazurecompute-Diskid: + - 0ea91415-9058-46c6-9792-3afcb4da976f + X-Ms-Meta-Microsoftazurecompute-Diskname: + - miq-test-rhel1 + X-Ms-Meta-Microsoftazurecompute-Disktype: + - OSDisk + X-Ms-Lease-Status: + - locked + X-Ms-Lease-State: + - leased + X-Ms-Lease-Duration: + - infinite + X-Ms-Blob-Type: + - PageBlob + X-Ms-Blob-Sequence-Number: + - '371' + X-Ms-Copy-Id: + - b967ea05-82a2-405a-8df9-4615d59df4eb + X-Ms-Copy-Source: + - https://ardfepirv2bl5prdstr06.blob.core.windows.net/a879bbefc56a43abb0ce65052aac09f3/rhel-72-20160302?sv=2014-02-14&sr=b&si=PirCacheAccountPublisherContainerPolicy&sig=2TQ3SKHqVnqe4jVKB4qMCBOphv2nYelKworI7pfckrs%3D + X-Ms-Copy-Status: + - success + X-Ms-Copy-Progress: + - 32212255232/32212255232 + X-Ms-Copy-Completion-Time: + - Fri, 18 Mar 2016 17:23:28 GMT + X-Ms-Server-Encrypted: + - 'false' + Date: + - Wed, 07 Mar 2018 21:37:36 GMT + body: + encoding: UTF-8 + string: '' + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:37 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"5ad0e691-263e-42ca-8a93-833bd4dbf13f" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 5a6e7353-5471-4565-8f79-726f69fbcc64 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14966' + X-Ms-Correlation-Request-Id: + - fdaeda3d-beff-4f54-9d64-97cb4fb559ef + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213737Z:fdaeda3d-beff-4f54-9d64-97cb4fb559ef + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:37 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n \"type\": + \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f4a4a6a5-e2e8-47bd-b46f-00592f8fce53\",\r\n \"securityRules\": + [\r\n {\r\n \"name\": \"default-allow-ssh\",\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/default-allow-ssh\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"rhel1-inbound1\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/rhel1-inbound1\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"80\",\r\n + \ \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"rhel1-inbound2\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/securityRules/rhel1-inbound2\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"443\",\r\n + \ \"destinationPortRange\": \"443\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n + \ {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowVnetInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow inbound traffic from azure load balancer\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": + \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/DenyAllInBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n + \ \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n + \ {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowVnetOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to all VMs + in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": + \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n + \ \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": + \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/AllowInternetOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n + \ \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n + \ \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": + \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": + \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n + \ \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": + [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": + []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1/defaultSecurityRules/DenyAllOutBound\",\r\n + \ \"etag\": \"W/\\\"5ad0e691-263e-42ca-8a93-833bd4dbf13f\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": + \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": + \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": + \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n + \ \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": + [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": + [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n + \ ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\"\r\n + \ }\r\n ]\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:37 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"fceae1ac-4620-482a-bc6d-79c867179ae5" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 0ec83fae-c1d5-47fb-b985-85b134696de6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14948' + X-Ms-Correlation-Request-Id: + - 1d84fd03-5e1d-40a9-a93f-88d9911d222f + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213739Z:1d84fd03-5e1d-40a9-a93f-88d9911d222f + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:38 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-azure-test1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1\",\r\n + \ \"etag\": \"W/\\\"fceae1ac-4620-482a-bc6d-79c867179ae5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"d74c1e5f-50e4-4c8a-a7fe-78eaddc6b915\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"10.16.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\",\r\n + \ \"etag\": \"W/\\\"fceae1ac-4620-482a-bc6d-79c867179ae5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.16.0.0/24\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqazure-centos1611/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-winimg241/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miqmismatch1/ipConfigurations/miqmismatch1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/dbergerprov1/ipConfigurations/dbergerprov1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-a670/ipConfigurations/ipconfig1\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/rspec-lb-b843/ipConfigurations/ipconfig1\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": + [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": + false\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:39 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"f006e6f9-0292-42cd-99fc-f72f194553c1" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - 574e4edf-9915-4a49-bc56-2eb5594f8fa9 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14951' + X-Ms-Correlation-Request-Id: + - 81dcc479-a2ad-4055-aab0-3ce66c53ddff + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213743Z:81dcc479-a2ad-4055-aab0-3ce66c53ddff + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:42 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1390\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"98853f48-2806-4065-be57-cf9159550440\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\",\r\n + \ \"etag\": \"W/\\\"f006e6f9-0292-42cd-99fc-f72f194553c1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.16.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/miq-azure-test1/subnets/default\"\r\n + \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": + \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": + [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": + \"l2pezv5ekcfezj54pdvn1rvzcf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": + \"00-0D-3A-10-EB-AB\",\r\n \"enableAcceleratedNetworking\": false,\r\n + \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n + \ \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkSecurityGroups/miq-test-rhel1\"\r\n + \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": + \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Compute/virtualMachines/miq-test-rhel1\"\r\n + \ },\r\n \"virtualNetworkTapProvisioningState\": \"NotProvisioned\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:43 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTgzMTcsIm5iZiI6MTUyMDQ1ODMxNywiZXhwIjoxNTIwNDYyMjE3LCJhaW8iOiJZMk5nWU1oYys1M3BsS2Y4UzVOMUJwOWV2T3lXQndBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoidnN1cnFBZ29ha3l0R2pZb0FmNEFBQSIsInZlciI6IjEuMCJ9.RjiYVECcwCqJWlQ93PcUlysHWTNlFgtyaCUjETEjqUQt9iU3echfxqHEMtlclwcooR05eNLOFvAfNiX6nR7ZK0d4Hc1BoxPjlBYO98aE3ziFqm46LK1FJzdKWmNml80LuuznVgltpUHUOWRLkuiLdmY4LLISYFZUJMf15iariTBC_5Ze9nIP6NNs9JCkqYUkTZwLKz9edEZ6zq05TVjlAWgy-PIqLyksz2JACDhaOsqzDKN4StIxGcWnH8nn9SW1Yq2GHwj1RNHSO1NbQjk4V46f7dqOo6ZUcX5-ngNlfj9BauEUZndOXBX98D03q1BBuJdDxHVkWcGguYktSWLHqg + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"054052bb-11ff-4f6e-ac1a-3427c2fd17aa" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - e63ce55d-e210-4df4-897c-a050ad4a279c + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14849' + X-Ms-Correlation-Request-Id: + - 649d681d-1789-4d23-ab06-8f78c8525c90 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T213743Z:649d681d-1789-4d23-ab06-8f78c8525c90 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 21:37:43 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"miq-test-rhel1\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/publicIPAddresses/miq-test-rhel1\",\r\n + \ \"etag\": \"W/\\\"054052bb-11ff-4f6e-ac1a-3427c2fd17aa\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f6cfc635-411e-48ce-a627-39a2fc0d3168\",\r\n \"ipAddress\": + \"52.224.165.15\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n + \ \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/networkInterfaces/miq-test-rhel1390/ipConfigurations/ipconfig1\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 21:37:44 GMT +recorded_with: VCR 3.0.3 diff --git a/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualNetworks_write_EndRequest.yml b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualNetworks_write_EndRequest.yml new file mode 100644 index 00000000..6e789e6f --- /dev/null +++ b/spec/vcr_cassettes/manageiq/providers/azure/cloud_manager/event_target_parser/virtualNetworks_write_EndRequest.yml @@ -0,0 +1,2410 @@ +--- +http_interactions: +- request: + method: post + uri: https://login.microsoftonline.com/AZURE_TENANT_ID/oauth2/token + body: + encoding: UTF-8 + string: grant_type=client_credentials&client_id=AZURE_CLIENT_ID&client_secret=AZURE_CLIENT_SECRET&resource=https%3A%2F%2Fmanagement.azure.com%2F + headers: + Accept: + - "*/*" + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Length: + - '186' + Content-Type: + - application/x-www-form-urlencoded + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, no-store + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Server: + - Microsoft-IIS/10.0 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Request-Id: + - 9cb2eae1-5846-478b-a821-491fe0870000 + P3p: + - CP="DSP CUR OTPi IND OTRi ONL FIN" + Set-Cookie: + - esctx=AQABAAAAAABHh4kmS_aKT5XrjzxRAtHzdUxMcfwaOumC0oWiiqzw6xd-yNLGGhkgqXP7EgdQpKoB3jFNlDcxKEvndGOLQdbglCxYJNZ5ye1a2y-FY1jGjrPjEfNBWQ6Fu33UWNn9BFQ4jSPHtrRuCofCzPwhW9bxkUqCd04T1KfZvSBm08-9eRzAfLfxF655J5RJOhTNTTQgAA; + domain=.login.microsoftonline.com; path=/; secure; HttpOnly + - stsservicecookie=ests; path=/; secure; HttpOnly + - x-ms-gateway-slice=006; path=/; secure; HttpOnly + X-Powered-By: + - ASP.NET + Date: + - Wed, 07 Mar 2018 20:43:56 GMT + Content-Length: + - '1505' + body: + encoding: UTF-8 + string: '{"token_type":"Bearer","expires_in":"3600","ext_expires_in":"0","expires_on":"1520459036","not_before":"1520455136","resource":"https://management.azure.com/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUxMzYsIm5iZiI6MTUyMDQ1NTEzNiwiZXhwIjoxNTIwNDU5MDM2LCJhaW8iOiJZMk5nWUZCTzNGYjNsL3ZQM3pXbkd3d1dlcjVhQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiNGVxeW5FWllpMGVvSVVrZjRJY0FBQSIsInZlciI6IjEuMCJ9.HkXwNGZ2gu7CYj8au53_y8bB97uG_XadrpNawJAtaDHwBGrU5WiG3uoivc_kl78lP-rBCGHQVlJy6acZnCkw_lLxn5rDJx3uJZNL_UzyHLNvVTk3bKLcoL-3XhDzZ18XfsARxWJ-Wkullb5TiEymktX_e3h2-zbcxkf3Hxr8ymMk-Mhsx6rgkopZN-BAI6v1dyVI9AAhCSY0vjgpIbN2UqIzaVhJwxF7AXyPOmV3mNzyKGo69emIiKI5r2fP_I-gZsZ5Qp821Toobj1ejuivPmN9nnSXK1jwBeaAnrgpl_x2N0zUgjzNeT9uLPspVy-E_a1iHTKal2iRz4sCFVKUoQ"}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:57 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions?api-version=2016-06-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUxMzYsIm5iZiI6MTUyMDQ1NTEzNiwiZXhwIjoxNTIwNDU5MDM2LCJhaW8iOiJZMk5nWUZCTzNGYjNsL3ZQM3pXbkd3d1dlcjVhQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiNGVxeW5FWllpMGVvSVVrZjRJY0FBQSIsInZlciI6IjEuMCJ9.HkXwNGZ2gu7CYj8au53_y8bB97uG_XadrpNawJAtaDHwBGrU5WiG3uoivc_kl78lP-rBCGHQVlJy6acZnCkw_lLxn5rDJx3uJZNL_UzyHLNvVTk3bKLcoL-3XhDzZ18XfsARxWJ-Wkullb5TiEymktX_e3h2-zbcxkf3Hxr8ymMk-Mhsx6rgkopZN-BAI6v1dyVI9AAhCSY0vjgpIbN2UqIzaVhJwxF7AXyPOmV3mNzyKGo69emIiKI5r2fP_I-gZsZ5Qp821Toobj1ejuivPmN9nnSXK1jwBeaAnrgpl_x2N0zUgjzNeT9uLPspVy-E_a1iHTKal2iRz4sCFVKUoQ + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Tenant-Reads: + - '14996' + X-Ms-Request-Id: + - 1d73e520-43cd-474a-a6e9-c01f872cbf0f + X-Ms-Correlation-Request-Id: + - 1d73e520-43cd-474a-a6e9-c01f872cbf0f + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204357Z:1d73e520-43cd-474a-a6e9-c01f872cbf0f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:56 GMT + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/7be814a0-2a8a-4798-ac8f-304eda9d56f3","subscriptionId":"7be814a0-2a8a-4798-ac8f-304eda9d56f3","displayName":"New + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"Sponsored_2016-01-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID","subscriptionId":"AZURE_SUBSCRIPTION_ID","displayName":"Microsoft + Azure Sponsorship","state":"Enabled","subscriptionPolicies":{"locationPlacementId":"Public_2014-09-01","quotaId":"PayAsYouGo_2014-09-01","spendingLimit":"Off"},"authorizationSource":"RoleBased"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:43:57 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/providers?api-version=2015-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUxMzYsIm5iZiI6MTUyMDQ1NTEzNiwiZXhwIjoxNTIwNDU5MDM2LCJhaW8iOiJZMk5nWUZCTzNGYjNsL3ZQM3pXbkd3d1dlcjVhQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiNGVxeW5FWllpMGVvSVVrZjRJY0FBQSIsInZlciI6IjEuMCJ9.HkXwNGZ2gu7CYj8au53_y8bB97uG_XadrpNawJAtaDHwBGrU5WiG3uoivc_kl78lP-rBCGHQVlJy6acZnCkw_lLxn5rDJx3uJZNL_UzyHLNvVTk3bKLcoL-3XhDzZ18XfsARxWJ-Wkullb5TiEymktX_e3h2-zbcxkf3Hxr8ymMk-Mhsx6rgkopZN-BAI6v1dyVI9AAhCSY0vjgpIbN2UqIzaVhJwxF7AXyPOmV3mNzyKGo69emIiKI5r2fP_I-gZsZ5Qp821Toobj1ejuivPmN9nnSXK1jwBeaAnrgpl_x2N0zUgjzNeT9uLPspVy-E_a1iHTKal2iRz4sCFVKUoQ + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Vary: + - Accept-Encoding + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14976' + X-Ms-Request-Id: + - 112230a6-48a6-4e59-aef9-b15a42a9aada + X-Ms-Correlation-Request-Id: + - 112230a6-48a6-4e59-aef9-b15a42a9aada + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204359Z:112230a6-48a6-4e59-aef9-b15a42a9aada + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:43:59 GMT + Content-Length: + - '310901' + body: + encoding: ASCII-8BIT + string: '{"value":[{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AAD","namespace":"Microsoft.AAD","authorizations":[{"applicationId":"443155a6-77f3-45e3-882b-22b3a8d431fb","roleDefinitionId":"7389DE79-3180-4F07-B2BA-C5BA1F01B03A"},{"applicationId":"abba844e-bc0e-44b0-947a-dc74e5d09022","roleDefinitionId":"63BC473E-7767-42A5-A3BF-08EB71200E04"},{"applicationId":"d87dcbc6-a371-462e-88e3-28ad15ec4e64","roleDefinitionId":"861776c5-e0df-4f95-be4f-ac1eec193323"}],"resourceTypes":[{"resourceType":"DomainServices","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"locations/operationresults","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]},{"resourceType":"operations","locations":["West + US","Central US","East US","South Central US","West Europe","North Europe","East + Asia","Southeast Asia","East US 2","Australia East","Australia Southeast","West + Central US","North Central US","Japan East","Japan West","Brazil South","Central + India","South India","West India","Canada Central","Canada East","West US + 2"],"apiVersions":["2017-06-01","2017-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Advisor","namespace":"Microsoft.Advisor","authorization":{"applicationId":"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7","roleDefinitionId":"8a63b04c-3731-409b-9765-f1175c047872"},"resourceTypes":[{"resourceType":"suppressions","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"generateRecommendations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-19-alpha","2017-04-19","2017-03-31-alpha","2017-03-31","2016-07-12-rc","2016-07-12-preview","2016-07-12-alpha","2016-05-09-preview","2016-05-09-alpha"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ApiManagement","namespace":"Microsoft.ApiManagement","authorization":{"applicationId":"8602e328-9b72-4f2d-a4ae-1387d013a2b3","roleDefinitionId":"e263b525-2e60-4418-b655-420bae0b172e"},"resourceTypes":[{"resourceType":"service","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","North Central + US","South Central US","West Central US","West US","West US 2","Canada Central","Canada + East","North Europe","West Europe","UK South","UK West","France Central","East + Asia","Southeast Asia","Japan East","Japan West","Korea Central","Korea South","Brazil + South","Central India","South India","West India"],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"validateServiceName","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-09-15","2014-02-14"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"reportFeedback","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"checkFeedbackRequired","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-03-01","2016-10-10","2016-07-07","2015-09-15","2014-02-14"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Automation","namespace":"Microsoft.Automation","authorizations":[{"applicationId":"fc75330b-179d-49af-87dd-3b1acf6827fa","roleDefinitionId":"95fd5de3-d071-4362-92bf-cf341c1de832"}],"resourceTypes":[{"resourceType":"automationAccounts","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/runbooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/configurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","North + Central US","Korea Central","East US","West US 2","Brazil South","UK South","West + Central US","Central India","Australia Southeast","Canada Central","North + Europe"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/webhooks","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]},{"resourceType":"automationAccounts/softwareUpdateConfigurations","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview"]},{"resourceType":"automationAccounts/jobs","locations":["Japan + East","East US 2","West Europe","Southeast Asia","South Central US","Brazil + South","UK South","West Central US","North Europe","Canada Central","Australia + Southeast","Central India"],"apiVersions":["2018-01-15","2017-05-15-preview","2015-10-31","2015-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureActiveDirectory","namespace":"Microsoft.AzureActiveDirectory","resourceTypes":[{"resourceType":"b2cDirectories","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]},{"resourceType":"operations","locations":["Global","United + States","Europe"],"apiVersions":["2017-01-30","2016-12-13-preview","2016-02-10-privatepreview"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Backup","namespace":"Microsoft.Backup","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"BackupVault","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-03-15","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Batch","namespace":"Microsoft.Batch","authorization":{"applicationId":"ddbf3205-c6bd-46ae-8127-60eb93363864","roleDefinitionId":"b7f84953-1d03-4eab-9ea4-45f065258ff8"},"resourceTypes":[{"resourceType":"batchAccounts","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01","2015-07-01","2014-05-01-privatepreview"]},{"resourceType":"operations","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]},{"resourceType":"locations/quotas","locations":["West + Europe","East US","East US 2","West US","North Central US","Brazil South","North + Europe","Central US","East Asia","Japan East","Australia Southeast","Japan + West","Korea South","Korea Central","Southeast Asia","South Central US","Australia + East","South India","Central India","Canada Central","Canada East","UK South","UK + West","West Central US","West US 2"],"apiVersions":["2017-09-01","2017-05-01","2017-01-01","2015-12-01","2015-09-01"]}],"registrationState":"Unregistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicCompute","namespace":"Microsoft.ClassicCompute","resourceTypes":[{"resourceType":"domainNames","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkDomainNameAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"domainNames/slots/roles/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"domainNames/slots/roles/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Canada + Central","Canada East","UK South","UK West","West US","Central US","South + Central US","Japan East","Japan West","East Asia","Southeast Asia","Australia + East","Australia Southeast","West US 2","West Central US","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metrics","locations":["North + Central US","South Central US","East US","East US 2","Canada Central","Canada + East","West US","West US 2","West Central US","Central US","East Asia","Southeast + Asia","North Europe","West Europe","UK South","UK West","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"resourceTypes","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"moveSubscriptionResources","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"validateSubscriptionMoveAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operationStatuses","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01"]},{"resourceType":"operatingSystems","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]},{"resourceType":"operatingSystemFamilies","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicNetwork","namespace":"Microsoft.ClassicNetwork","resourceTypes":[{"resourceType":"virtualNetworks","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-11-15","2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"virtualNetworks/virtualNetworkPeerings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"virtualNetworks/remoteVirtualNetworkPeeringProxies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2016-11-01"]},{"resourceType":"reservedIps","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"gatewaySupportedDevices","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]},{"resourceType":"networkSecurityGroups","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-10-01","2015-06-01","2014-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicStorage","namespace":"Microsoft.ClassicStorage","resourceTypes":[{"resourceType":"storageAccounts","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","West US 2","North + Central US","South Central US","West Central US","Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia East","Australia + Southeast","South India","Central India","West India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01-beta","2014-04-01","2014-01-01"]},{"resourceType":"quotas","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"checkStorageAccountAvailability","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-01-01"]},{"resourceType":"storageAccounts/services","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/diagnosticSettings","locations":["West + US","Central US","South Central US","Japan East","Japan West","East Asia","Southeast + Asia","Australia East","Australia Southeast","South India","Central India","West + India","West US 2","West Central US","East US","East US 2","North Central + US","North Europe","West Europe","Brazil South","Canada Central","Canada East","UK + South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"capabilities","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"disks","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"images","locations":[],"apiVersions":["2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"vmImages","locations":[],"apiVersions":["2016-11-01"]},{"resourceType":"publicImages","locations":[],"apiVersions":["2016-11-01","2016-04-01"]},{"resourceType":"osImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"osPlatformImages","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2016-04-01","2015-12-01","2015-06-01","2014-06-01","2014-04-01","2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachines/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/vmSizes","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/runCommands","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"locations/usages","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/virtualMachines","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30"]},{"resourceType":"locations/publishers","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"]},{"resourceType":"restorePointCollections","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30"]},{"resourceType":"virtualMachines/diagnosticSettings","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"virtualMachines/metricDefinitions","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"sharedVMImages","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"sharedVMImages/versions","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"locations/capsoperations","locations":["West + Central US"],"apiVersions":["2017-10-15-preview"]},{"resourceType":"disks","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"snapshots","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"locations/diskoperations","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-03-30","2016-04-30-preview"]},{"resourceType":"images","locations":["Southeast + Asia","East US 2","Central US","West Europe","East US","North Central US","South + Central US","West US","North Europe","East Asia","Brazil South","West US 2","West + Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada + East","Central India","South India","Australia East","Australia Southeast","Korea + Central","Korea South","West India"],"apiVersions":["2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"]},{"resourceType":"locations/logAnalytics","locations":["East + US","East US 2","West US","Central US","North Central US","South Central US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","Brazil South","South India","Central India","West + India","Canada Central","Canada East","West US 2","West Central US","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorization":{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/replications","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/ping","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/webhooks/listEvents","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"locations/operationResults","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/GetCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"registries/listCredentials","locations":["South + Central US","East US","West US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/regenerateCredential","locations":["South + Central US","West US","East US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2"],"apiVersions":["2017-10-01","2017-03-01"]},{"resourceType":"registries/listUsages","locations":["West + Central US","East US","West Europe","South Central US","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Central US","Canada East","Canada + Central","UK South","UK West","Australia Southeast","East Asia","Japan West","South + India"],"apiVersions":["2017-10-01"]},{"resourceType":"registries/regenerateCredentials","locations":["West + US","East US","South Central US","West Europe"],"apiVersions":["2016-06-27-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"]},{"resourceType":"operations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview","2017-03-01"]},{"resourceType":"locations","locations":["South + Central US","East US","West US","Central US","East US 2","North Central US","West + Central US","West US 2","Brazil South","Canada East","Canada Central","West + Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India"],"apiVersions":["2017-10-01","2017-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerService","namespace":"Microsoft.ContainerService","authorization":{"applicationId":"7319c514-987d-4e9b-ac3d-d38c4f427f4c","roleDefinitionId":"1b4a0c7f-2217-416f-acfa-cf73452fdc1c","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"containerServices","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"managedClusters","locations":["East + US","West Europe","Central US","Canada Central","Canada East"],"apiVersions":["2017-08-31"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-31","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/operations","locations":["Japan + East","Central US","East US 2","Japan West","East Asia","South Central US","Australia + East","Australia Southeast","Brazil South","Southeast Asia","West US","North + Central US","West Europe","North Europe","East US","UK West","UK South","West + Central US","West US 2","South India","Central India","West India","Canada + East","Canada Central","Korea South","Korea Central"],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-31","2016-09-30","2016-03-30","2015-11-01-preview"]},{"resourceType":"locations/orchestrators","locations":["UK + West","West US 2","East US","West Europe","Central US"],"apiVersions":["2017-09-30"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DevTestLab","namespace":"Microsoft.DevTestLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"labs","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"schedules","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/virtualMachines","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"labs/serviceRunners","locations":["Central + US","East US 2","South Central US"],"apiVersions":["2017-04-26-preview","2016-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]},{"resourceType":"locations/operations","locations":["West + Central US","Japan East","West US","Australia Southeast","Canada Central","Central + India","Central US","East Asia","Korea Central","North Europe","South Central + US","UK West","West India","Australia East","Brazil South","Canada East","East + US","East US 2","Japan West","Korea South","North Central US","South India","Southeast + Asia","UK South","West Europe","West US 2"],"apiVersions":["2017-04-26-preview","2016-05-15","2015-05-21-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DocumentDB","namespace":"Microsoft.DocumentDB","authorizations":[{"applicationId":"57c0fc58-a83a-41d0-8ae9-08952659bdfd","roleDefinitionId":"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282"}],"resourceTypes":[{"resourceType":"databaseAccounts","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"databaseAccountNames","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Central India","Central + US","East Asia","East US","East US 2","Japan East","Japan West","North Central + US","North Europe","South Central US","South India","Southeast Asia","West + Central US","West Europe","West India","West US","West US 2","UK West","UK + South","Brazil South","Korea South","Korea Central"],"apiVersions":["2016-03-31","2016-03-19","2015-11-06","2015-04-08","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.insights","namespace":"microsoft.insights","authorizations":[{"applicationId":"11c174dc-1945-4a9a-a36b-c79a0f246b9b","roleDefinitionId":"dd9d4347-f397-45f2-b538-85f21c90037b"},{"applicationId":"035f9e1d-4f00-4419-bf50-bf2d87eb4878","roleDefinitionId":"323795fe-ba3d-4f5a-ad42-afb4e1ea9485"},{"applicationId":"f5c26e74-f226-4ae8-85f0-b4af0080ac9e","roleDefinitionId":"529d7ae6-e892-4d43-809d-8547aeb90643"}],"resourceTypes":[{"resourceType":"components","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-12-01-preview","2014-08-01","2014-04-01"]},{"resourceType":"webtests","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01","2014-04-01"]},{"resourceType":"queries","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2015-05-01","2014-08-01"]},{"resourceType":"scheduledqueryrules","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"components/pricingPlans","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"migrateToNewPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"rollbackToLegacyPricingModel","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"listMigrationdate","locations":["East + US","South Central US","North Europe","West Europe","Southeast Asia","West + US 2"],"apiVersions":["2017-10-01"]},{"resourceType":"logprofiles","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"metricalerts","locations":["Global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"alertrules","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2016-03-01","2015-04-01","2014-04-01"]},{"resourceType":"autoscalesettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"eventtypes","locations":[],"apiVersions":["2017-03-01-preview","2016-09-01-preview","2015-04-01","2014-11-01","2014-04-01"]},{"resourceType":"locations","locations":["East + US"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-04-01","2014-06-01","2014-04-01"]},{"resourceType":"automatedExportSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-04-01","2014-04-01"]},{"resourceType":"diagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview","2016-09-01","2015-07-01"]},{"resourceType":"diagnosticSettingsCategories","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"extendedDiagnosticSettings","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2017-02-01"]},{"resourceType":"metricDefinitions","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West","Global"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-03-01","2015-07-01"]},{"resourceType":"logDefinitions","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","UK South","UK West","South + India","Central India","West India","Canada East","Canada Central","West Central + US","West US 2","Korea South","Korea Central"],"apiVersions":["2015-07-01"]},{"resourceType":"eventCategories","locations":[],"apiVersions":["2015-04-01"]},{"resourceType":"metrics","locations":["East + US","West US","West Europe","East Asia","Southeast Asia","Japan East","Japan + West","North Central US","South Central US","East US 2","Canada East","Canada + Central","Central US","Australia East","Australia Southeast","Brazil South","South + India","Central India","West India","North Europe","West US 2","West Central + US","Korea South","Korea Central","UK South","UK West"],"apiVersions":["2018-01-01","2017-09-01-preview","2017-05-01-preview","2016-09-01","2016-06-01"]},{"resourceType":"actiongroups","locations":["Global"],"apiVersions":["2018-03-01","2017-04-01","2017-03-01-preview"]},{"resourceType":"activityLogAlerts","locations":["Global"],"apiVersions":["2017-04-01","2017-03-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.KeyVault","namespace":"Microsoft.KeyVault","authorizations":[{"applicationId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","roleDefinitionId":"1cf9858a-28a2-4228-abba-94e606305b95"}],"resourceTypes":[{"resourceType":"vaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/secrets","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"vaults/accessPolicies","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-10-01","2015-06-01","2014-12-19-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2016-10-01","2015-06-01"]},{"resourceType":"deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-10-01"]},{"resourceType":"locations/deletedVaults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","East US","North Europe","West Europe","East Asia","Southeast + Asia","East US 2","Central US","South Central US","West US","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India","South + India","West India","Canada Central","Canada East","UK South","UK West","West + Central US","West US 2","Korea Central","Korea South","France Central"],"apiVersions":["2016-10-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearning","namespace":"Microsoft.MachineLearning","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"Workspaces","locations":["South + Central US","West Europe","Southeast Asia","Japan East","West Central US"],"apiVersions":["2016-04-01"]},{"resourceType":"webServices","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"operations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations","locations":["South + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operations","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]},{"resourceType":"commitmentPlans","locations":["South + Central US","West Europe","Southeast Asia","Japan East","East US 2","West + Central US"],"apiVersions":["2017-01-01","2016-05-01-preview"]}],"registrationState":"Registering"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedIdentity","namespace":"Microsoft.ManagedIdentity","resourceTypes":[{"resourceType":"Identities","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Canada Central","Canada East","Brazil South","Central + India","West India","South India","Japan West","Japan East","East Asia","Southeast + Asia","Korea Central","Korea South","North Europe","West Europe","UK West","UK + South","Central US","North Central US","East US","East US 2","South Central + US","West US","West US 2","West Central US"],"apiVersions":["2015-08-31-PREVIEW"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"publicIPAddresses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkInterfaces","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"loadBalancers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationSecurityGroups","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"routeTables","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"networkWatchers","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30"]},{"resourceType":"networkWatchers/connectionMonitors","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"networkWatchers/lenses","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01"]},{"resourceType":"virtualNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"localNetworkGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"connections","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGateways","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/operationResults","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01"]},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2017-10-01","2017-09-01"]},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2017-10-01","2017-09-01","2016-04-01","2015-05-04-preview"]},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"]},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2017-05-01","2017-03-01"]},{"resourceType":"expressRouteCircuits","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"expressRouteServiceProviders","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"]},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"]},{"resourceType":"applicationGatewayAvailableSslOptions","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"]},{"resourceType":"routeFilters","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","Korea South"],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]},{"resourceType":"bgpServiceCommunities","locations":[],"apiVersions":["2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.NotificationHubs","namespace":"Microsoft.NotificationHubs","resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"namespaces/notificationHubs","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]},{"resourceType":"operationResults","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South"],"apiVersions":["2017-04-01","2016-03-01","2014-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"]},{"resourceType":"workspaces/query","locations":["West + Central US","Australia Southeast","West Europe","East US","Southeast Asia","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-10-01"]},{"resourceType":"workspaces/dataSources","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2014-10-10"]},{"resourceType":"workspaces/linkedServices","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"linkTargets","locations":["East + US"],"apiVersions":["2015-03-20"]},{"resourceType":"operations","locations":[],"apiVersions":["2014-11-10"]},{"resourceType":"devices","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.OperationsManagement","namespace":"Microsoft.OperationsManagement","authorization":{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"aa249101-6816-4966-aafa-08175d795f14"},"resourceTypes":[{"resourceType":"solutions","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementconfigurations","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2015-11-01-preview"]},{"resourceType":"managementassociations","locations":[],"apiVersions":["2015-11-01-preview"]},{"resourceType":"views","locations":["East + US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan + East","UK South","Central India","Canada Central"],"apiVersions":["2017-08-21-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-11-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Portal","namespace":"Microsoft.Portal","resourceTypes":[{"resourceType":"dashboards","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"operations","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"consoles","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/consoles","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"userSettings","locations":[],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]},{"resourceType":"locations/userSettings","locations":["West + US","East US","Central India","North Europe","West Europe","South Central + US","Southeast Asia","East US 2","Central US"],"apiVersions":["2017-12-01-preview","2017-08-01-preview","2017-01-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorization":{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","Canada Central","Canada East","West Central US","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"operations","locations":["Southeast + Asia"],"apiVersions":["2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2016-06-01"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West Central US","Canada Central","Canada East","West US 2","UK South","UK + West","Korea Central","Korea South"],"apiVersions":["2017-07-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ResourceHealth","namespace":"Microsoft.ResourceHealth","authorizations":[{"applicationId":"8bdebf23-c0fe-4187-a378-717ad86f6a53","roleDefinitionId":"cc026344-c8b1-4561-83ba-59eba84b27cc"}],"resourceTypes":[{"resourceType":"availabilityStatuses","locations":[],"apiVersions":["2017-07-01","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"notifications","locations":["Australia + Southeast"],"apiVersions":["2016-09-01","2016-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Security","namespace":"Microsoft.Security","authorization":{"applicationId":"8edd93e1-2103-40b4-bd70-6e34e586362d","roleDefinitionId":"855AF4C4-82F6-414C-B1A2-628025628B9A"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatuses","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/virtualMachines","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/endpoints","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatus/subnets","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"tasks","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"alerts","locations":["Central + US","East US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/patch","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/baseline","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"monitoring/antimalware","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionAgents","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"dataCollectionResults","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"pricings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"AutoProvisioningSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"securityContacts","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"workspaceSettings","locations":["Central + US","East US"],"apiVersions":["2017-08-01-preview"]},{"resourceType":"complianceResults","locations":["Central + US","East US"],"apiVersions":["2017-08-01"]},{"resourceType":"policies","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"appliances","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"webApplicationFirewalls","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/webApplicationFirewalls","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"discoveredSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/discoveredSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securitySolutionsReferenceData","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/securitySolutionsReferenceData","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/jitNetworkAccessPolicies","locations":["Central + US","East US","North Europe","West Europe","UK South","UK West","West Central + US","West US 2"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations","locations":["Central + US","East US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"securityStatusesSummaries","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"applicationWhitelistings","locations":["Central + US","East US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/applicationWhitelistings","locations":["Central + US","West Central US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/alerts","locations":["Central + US","West Europe"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/tasks","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"externalSecuritySolutions","locations":["Central + US","East US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]},{"resourceType":"locations/externalSecuritySolutions","locations":["Central + US","West Europe","West Central US"],"apiVersions":["2015-06-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.SiteRecovery","namespace":"Microsoft.SiteRecovery","authorization":{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},"resourceTypes":[{"resourceType":"SiteRecoveryVault","locations":["East + US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","Brazil South","North + Central US","South Central US","Central US","East US 2","Central India","South + India"],"apiVersions":["2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Sql","namespace":"Microsoft.Sql","authorizations":[{"applicationId":"e4ab13ed-33cb-41b4-9140-6e264582cf85","roleDefinitionId":"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"},{"applicationId":"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9","roleDefinitionId":"45e8abf8-0ec4-44f3-9c37-cff4f7779302"},{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},{"applicationId":"76c7f279-7959-468f-8943-3954880e0d8c","roleDefinitionId":"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef"}],"resourceTypes":[{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-05-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/databaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/databaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/serverKeyAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverKeyOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/keys","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/encryptionProtector","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/encryptionProtectorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/serverOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01","2014-04-01-preview"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2015-01-01","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/serviceObjectives","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/communicationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/restorableDroppedDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recoverableDatabases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/geoBackupPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/backupLongTermRetentionVaults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/import","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/importExportOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/backupLongTermRetentionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databaseSecurityPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/automaticTuning","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/databases/transparentDataEncryption","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview","2014-04-01-preview","2014-04-01"]},{"resourceType":"servers/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/recommendedElasticPools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/auditingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/connectionPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/dataMaskingPolicies/rules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/securityAlertPolicies","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/auditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"servers/extendedAuditingSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/auditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/extendedAuditingSettingsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/elasticpools","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-09-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"locations/jobAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/jobAgentAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/disasterRecoveryConfiguration","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/dnsAliases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/dnsAliasOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/failoverGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/failoverGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/firewallRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"servers/virtualNetworkRules","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/virtualNetworkRulesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/virtualNetworkRulesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2015-05-01"]},{"resourceType":"locations/databaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/deletedServerOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/aggregatedDatabaseMetrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticpools/metricdefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/topQueries/queryText","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPools/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/advisors","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview","2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/databases/extensions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2014-04-01-preview","2014-04-01","2014-01-01"]},{"resourceType":"servers/elasticPoolEstimates","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/auditRecords","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentScans","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/vulnerabilityAssessments","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-10-01-preview","2017-03-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessmentSettings","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/VulnerabilityAssessment","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"servers/databases/syncGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/databases/syncGroups/syncMembers","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"servers/syncAgents","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"managedInstances","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview","2015-05-01-preview"]},{"resourceType":"managedInstances/administrators","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/databases","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metrics","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"managedInstances/metricDefinitions","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedDatabaseRestoreOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/managedServerSecurityAlertPoliciesOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"virtualClusters","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/managedInstanceOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/administratorAzureAsyncOperation","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/administratorOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2017-03-01-preview"]},{"resourceType":"locations/syncGroupOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncMemberOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncAgentOperationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]},{"resourceType":"locations/syncDatabaseIds","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-05-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Storage","namespace":"Microsoft.Storage","authorizations":[{"applicationId":"a6aa9161-5291-40bb-8c5c-923b567bee3b","roleDefinitionId":"070ab87f-0efc-4423-b18b-756f3bdb0236"},{"applicationId":"e406a681-f3d4-42a8-90b6-c2b029497af1"}],"resourceTypes":[{"resourceType":"storageAccounts","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"locations/asyncoperations","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/listAccountSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/listServiceSas","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/blobServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/tableServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/queueServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"storageAccounts/fileServices","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01","2016-01-01"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["East + US","East US 2","West US","West Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","Central US","North + Europe","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-07-01"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-06-01","2016-12-01","2016-05-01","2016-01-01","2015-06-15","2015-05-01-preview"]},{"resourceType":"storageAccounts/services","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]},{"resourceType":"storageAccounts/services/metricDefinitions","locations":["East + US","West US","West Europe","North Europe","East Asia","Southeast Asia","Japan + East","Japan West","North Central US","South Central US","East US 2","Central + US","Australia East","Australia Southeast","Brazil South","South India","Central + India","West India","Canada East","Canada Central","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.visualstudio","namespace":"microsoft.visualstudio","authorization":{"applicationId":"499b84ac-1321-427f-aa17-267ca6975798","roleDefinitionId":"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8"},"resourceTypes":[{"resourceType":"account","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/project","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"account/extension","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview","2014-02-26"]},{"resourceType":"checkNameAvailability","locations":["North + Central US","South Central US","East US","West US","Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia + East","West India","Central India","South India","West US 2","Canada Central"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Web","namespace":"Microsoft.Web","authorization":{"applicationId":"abfa0a7c-a6b6-4736-8310-5855508787cd","roleDefinitionId":"f47ed98b-b063-4a5b-9e10-4b9b44fa7735"},"resourceTypes":[{"resourceType":"sites/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/instances/extensions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots/publicCertificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"publishingUsers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostnameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"validate","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"isusernameavailable","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sourceControls","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"availableStacks","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"listSitesAssignedToHostName","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/domainOwnershipIdentifiers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"sites/slots/hostNameBindings","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"certificates","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"serverFarms/workers","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/slots","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"runtimes","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"sites/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/slots/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"serverFarms/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"sites/recommendations","locations":[],"apiVersions":["2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"recommendations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"georegions","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"sites/premieraddons","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"]},{"resourceType":"hostingEnvironments","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"]},{"resourceType":"hostingEnvironments/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/multiRolePools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances","locations":[],"apiVersions":["2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metrics","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"hostingEnvironments/workerPools/instances/metricDefinitions","locations":[],"apiVersions":["2014-04-01"]},{"resourceType":"deploymentLocations","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"functions","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"deletedSites","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"classicMobileServices","locations":[],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"connections","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"customApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/listWsdlInterfaces","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/managedApis","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/apiOperations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"connectionGateways","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"locations/connectionGatewayInstallations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","West US 2","West Central US","Canada Central","Canada + East","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]},{"resourceType":"checkNameAvailability","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"billingMeters","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"verifyHostingEnvironmentVnet","locations":["South + Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea + South","West US","East US","Japan West","Japan East","East Asia","East US + 2","North Central US","Central US","Brazil South","Australia East","Australia + Southeast","West India","Central India","South India","Canada Central","Canada + East","West Central US","UK West","UK South","West US 2"],"apiVersions":["2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/84codes.CloudAMQP","namespace":"84codes.CloudAMQP","resourceTypes":[{"resourceType":"servers","locations":["East + US 2","Central US","East US","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/AppDynamics.APM","namespace":"AppDynamics.APM","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-26"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-05-26"]},{"resourceType":"locations/operationResults","locations":["West + US"],"apiVersions":["2016-05-26"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Aspera.Transfers","namespace":"Aspera.Transfers","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Central US","East US","West Europe","East Asia","Southeast + Asia","Japan East","East US 2","Japan West"],"apiVersions":["2016-03-25"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-25"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Auth0.Cloud","namespace":"Auth0.Cloud","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-11-23"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Citrix.Cloud","namespace":"Citrix.Cloud","resourceTypes":[{"resourceType":"accounts","locations":["West + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Cloudyn.Analytics","namespace":"Cloudyn.Analytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Conexlink.MyCloudIT","namespace":"Conexlink.MyCloudIT","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Crypteron.DataSecurity","namespace":"Crypteron.DataSecurity","resourceTypes":[{"resourceType":"apps","locations":["West + US"],"apiVersions":["2016-08-12"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-12"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.DynatraceSaaS","namespace":"Dynatrace.DynatraceSaaS","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-09-27"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Dynatrace.Ruxit","namespace":"Dynatrace.Ruxit","resourceTypes":[{"resourceType":"accounts","locations":["East + US"],"apiVersions":["2016-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-09-07","2016-04-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/LiveArena.Broadcast","namespace":"LiveArena.Broadcast","resourceTypes":[{"resourceType":"services","locations":["West + US","North Europe","Japan West","Japan East","East Asia","West Europe","East + US","Southeast Asia","Central US"],"apiVersions":["2016-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Lombiq.DotNest","namespace":"Lombiq.DotNest","resourceTypes":[{"resourceType":"sites","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Mailjet.Email","namespace":"Mailjet.Email","resourceTypes":[{"resourceType":"services","locations":["West + US","West Europe"],"apiVersions":["2017-10-01","2017-02-03"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-05-29","2017-02-03","2016-11-01","2016-07-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-10-01","2017-02-03","2016-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.aadiam","namespace":"microsoft.aadiam","resourceTypes":[{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-04-01","2017-03-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-01","2016-02-01","2015-11-01","2015-01-01"]},{"resourceType":"diagnosticSettings","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]},{"resourceType":"diagnosticSettingsCategories","locations":[],"apiVersions":["2017-04-01-preview","2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Addons","namespace":"Microsoft.Addons","authorization":{"applicationId":"24d3987b-be4a-48e0-a3e7-11c186f39e41","roleDefinitionId":"8004BAAB-A4CB-4981-8571-F7E44D039D93"},"resourceTypes":[{"resourceType":"supportProviders","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operations","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]},{"resourceType":"operationResults","locations":["West + Central US","South Central US","East US","West Europe"],"apiVersions":["2017-05-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ADHybridHealthService","namespace":"Microsoft.ADHybridHealthService","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"addsservices","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"configuration","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"agents","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"aadsupportcases","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"reports","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"servicehealthmetrics","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"logs","locations":["West + US"],"apiVersions":["2014-01-01"]},{"resourceType":"anonymousapiusers","locations":["West + US"],"apiVersions":["2014-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AlertsManagement","namespace":"Microsoft.AlertsManagement","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-11-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AnalysisServices","namespace":"Microsoft.AnalysisServices","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"servers","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationresults","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"locations/operationstatuses","locations":["West + US","North Europe","South Central US","West Europe","West Central US","Southeast + Asia","East US 2","North Central US","Brazil South","Canada Central","Australia + Southeast","Japan East","UK South","West India","West US 2","Central US","East + US"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]},{"resourceType":"operations","locations":["East + US 2","West Central US","West US 2"],"apiVersions":["2017-08-01-beta","2017-08-01","2017-07-14","2016-05-16"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Authorization","namespace":"Microsoft.Authorization","resourceTypes":[{"resourceType":"roleAssignments","locations":[],"apiVersions":["2018-01-01-preview","2017-10-01-preview","2017-09-01","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"roleDefinitions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"classicAdministrators","locations":[],"apiVersions":["2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"permissions","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"locks","locations":[],"apiVersions":["2017-04-01","2016-09-01","2015-06-01","2015-05-01-preview","2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-01-01","2014-10-01-preview","2014-06-01"]},{"resourceType":"policyDefinitions","locations":[],"apiVersions":["2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"policySetDefinitions","locations":[],"apiVersions":["2017-06-01-preview"]},{"resourceType":"policyAssignments","locations":[],"apiVersions":["2017-06-01-preview","2016-12-01","2016-04-01","2015-10-01-preview"]},{"resourceType":"providerOperations","locations":[],"apiVersions":["2018-01-01-preview","2017-05-01","2016-07-01","2015-07-01-preview","2015-07-01"]},{"resourceType":"elevateAccess","locations":[],"apiVersions":["2017-05-01","2016-07-01","2015-07-01","2015-06-01","2015-05-01-preview","2014-10-01-preview","2014-07-01-preview","2014-04-01-preview"]},{"resourceType":"checkAccess","locations":[],"apiVersions":["2017-10-01-preview","2017-09-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.AzureStack","namespace":"Microsoft.AzureStack","resourceTypes":[{"resourceType":"operations","locations":["Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]},{"resourceType":"registrations/products","locations":["West + Central US","Global"],"apiVersions":["2017-06-01","2016-01-01"]},{"resourceType":"registrations/customerSubscriptions","locations":["West + Central US","Global"],"apiVersions":["2017-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BatchAI","namespace":"Microsoft.BatchAI","authorization":{"applicationId":"9fcb3732-5f52-4135-8c08-9d4bbaf203ea","roleDefinitionId":"703B89C7-CE2C-431B-BDD8-FA34E39AF696","managedByRoleDefinitionId":"90B8E153-EBFF-4073-A95F-4DAD56B14C78"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"jobs","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"fileservers","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["East + US","West US 2","West Europe","East US 2","North Europe","Australia East"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Billing","namespace":"Microsoft.Billing","resourceTypes":[{"resourceType":"BillingPeriods","locations":["Central + US"],"apiVersions":["2017-04-24-preview"]},{"resourceType":"Invoices","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]},{"resourceType":"operations","locations":["Central + US"],"apiVersions":["2017-04-24-preview","2017-02-27-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BingMaps","namespace":"Microsoft.BingMaps","resourceTypes":[{"resourceType":"mapApis","locations":["West + US"],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-18","2015-07-02"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BizTalkServices","namespace":"Microsoft.BizTalkServices","resourceTypes":[{"resourceType":"BizTalk","locations":["East + US","West US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","Japan West","Japan East","South Central US"],"apiVersions":["2014-04-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.BotService","namespace":"Microsoft.BotService","authorization":{"applicationId":"f3723d34-6ff5-4ceb-a148-d99dcd2511fc","roleDefinitionId":"71213c26-43ed-41d8-9905-3c12971517a3"},"resourceTypes":[{"resourceType":"botServices","locations":["Global"],"apiVersions":["2017-12-01"]},{"resourceType":"checkNameAvailability","locations":["Global"],"apiVersions":["2017-12-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cache","namespace":"Microsoft.Cache","authorization":{"applicationId":"96231a05-34ce-4eb4-aa6a-70759cbb5e83","roleDefinitionId":"4f731528-ba85-45c7-acfb-cd0a9b3cf31b"},"resourceTypes":[{"resourceType":"Redis","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","Canada Central","Canada East","UK South","UK West","West US 2","West + Central US","South India","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"locations/operationResults","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast","Central India","West + India","South India","Canada Central","Canada East","UK South","UK West","West + US 2","West Central US","Korea Central","Korea South"],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01","2014-04-01-preview","2014-04-01-alpha","2014-04-01"]},{"resourceType":"RedisConfigDefinition","locations":[],"apiVersions":["2017-10-01","2017-02-01","2016-04-01","2015-08-01","2015-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Capacity","namespace":"Microsoft.Capacity","authorization":{"applicationId":"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b","roleDefinitionId":"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D"},"resourceTypes":[{"resourceType":"resources","locations":["South + Central US"],"apiVersions":["2017-11-01"]},{"resourceType":"reservationOrders","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/reservations/revisions","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"catalogs","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"appliedReservations","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkOffers","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"checkScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"calculatePrice","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/calculateRefund","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/return","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/split","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/merge","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"validateReservationOrder","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]},{"resourceType":"reservationOrders/availableScopes","locations":[],"apiVersions":["2017-11-01-beta","2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Cdn","namespace":"Microsoft.Cdn","resourceTypes":[{"resourceType":"profiles","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/origins","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"profiles/endpoints/customdomains","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/originresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"operationresults/profileresults/endpointresults/customdomainresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkNameAvailability","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"checkResourceUsage","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02"]},{"resourceType":"validateProbe","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]},{"resourceType":"edgenodes","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","South Central US","South India","Southeast + Asia","West Europe","West India","West US","West Central US"],"apiVersions":["2017-10-12","2017-04-02","2016-10-02","2016-04-02","2015-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CertificateRegistration","namespace":"Microsoft.CertificateRegistration","authorization":{"applicationId":"f3c21649-0979-4721-ac85-b0216b2cf413","roleDefinitionId":"933fba7e-2ed3-4da8-973d-8bd8298a9b40"},"resourceTypes":[{"resourceType":"certificateOrders","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"certificateOrders/certificates","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"validateCertificateRegistrationInformation","locations":["global"],"apiVersions":["2015-08-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicSubscription","namespace":"Microsoft.ClassicSubscription","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-09-01","2017-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ClassicInfrastructureMigrate","namespace":"Microsoft.ClassicInfrastructureMigrate","authorization":{"applicationId":"5e5abe2b-83cd-4786-826a-a05653ebb103","roleDefinitionId":"766c4d9b-ef83-4f73-8352-1450a506a69b"},"resourceTypes":[{"resourceType":"classicInfrastructureResources","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","West + India","South India"],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CognitiveServices","namespace":"Microsoft.CognitiveServices","authorizations":[{"applicationId":"7d312290-28c8-473c-a0ed-8e53749b6d6d","roleDefinitionId":"5cb87f79-a7c3-4a95-9414-45b65974b51b"}],"resourceTypes":[{"resourceType":"accounts","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"operations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/checkSkuAvailability","locations":["Global","Australia + East","Brazil South","West US","West US 2","West Europe","North Europe","Southeast + Asia","East Asia","West Central US","South Central US","East US","East US + 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/updateAccountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2017-04-18","2016-02-01-preview"]},{"resourceType":"locations/accountsCreationSettings","locations":["West + US","Global","West Europe","Southeast Asia","West Central US","East US 2"],"apiVersions":["2016-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Commerce","namespace":"Microsoft.Commerce","resourceTypes":[{"resourceType":"UsageAggregates","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]},{"resourceType":"RateCard","locations":[],"apiVersions":["2016-08-31-preview","2015-06-01-preview","2015-05-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01-preview","2015-03-31"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Consumption","namespace":"Microsoft.Consumption","resourceTypes":[{"resourceType":"ReservationSummaries","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationTransactions","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Balances","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Marketplaces","locations":[],"apiVersions":["2018-01-31"]},{"resourceType":"Pricesheets","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"ReservationDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview"]},{"resourceType":"Budgets","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"Terms","locations":[],"apiVersions":["2018-01-31","2017-12-30-preview"]},{"resourceType":"UsageDetails","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]},{"resourceType":"Operations","locations":[],"apiVersions":["2018-01-31","2017-11-30","2017-06-30-preview","2017-04-24-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","resourceTypes":[{"resourceType":"containerGroups","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["West + US","East US","West Europe","Southeast Asia"],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ContentModerator","namespace":"Microsoft.ContentModerator","resourceTypes":[{"resourceType":"applications","locations":["Central + US"],"apiVersions":["2016-04-08"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-04-08"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.CustomerInsights","namespace":"Microsoft.CustomerInsights","authorization":{"applicationId":"38c77d00-5fcb-4cce-9d93-af4738258e3c","roleDefinitionId":"E006F9C7-F333-477C-8AD6-1F3A9FE87F55"},"resourceTypes":[{"resourceType":"hubs","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/profiles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/interactions","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/authorizationPolicies","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/connectors/mappings","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/kpi","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/views","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/links","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roleAssignments","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/roles","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/widgetTypes","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"hubs/suggestTypeSchema","locations":["East + US 2","North Europe","Central US"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-07-01","2017-01-01","2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Databricks","namespace":"Microsoft.Databricks","authorizations":[{"applicationId":"d9327919-6775-4843-9037-3fb0fb0473cb","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},{"applicationId":"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations","locations":["West + US","East US 2","West Europe","North Europe","East US","Southeast Asia"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["West + US","East US 2","West Europe","East US","North Europe","Southeast Asia","East + Asia","South Central US","North Central US"],"apiVersions":["2018-04-01","2018-03-15","2018-03-01","2017-09-01-preview","2017-08-01-preview","2016-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataCatalog","namespace":"Microsoft.DataCatalog","resourceTypes":[{"resourceType":"catalogs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"checkNameAvailability","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"operations","locations":["West + Europe"],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-03-30","2015-07-01-preview"]},{"resourceType":"locations/jobs","locations":["East + US","West US","Australia East","West Europe","North Europe","Southeast Asia","West + Central US"],"apiVersions":["2016-03-30","2015-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataFactory","namespace":"Microsoft.DataFactory","resourceTypes":[{"resourceType":"dataFactories","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview","2014-04-01"]},{"resourceType":"factories","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"factories/integrationRuntimes","locations":["East + US","East US 2","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"dataFactories/diagnosticSettings","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"dataFactories/metricDefinitions","locations":["North + Europe","East US","West US","West Central US"],"apiVersions":["2014-04-01"]},{"resourceType":"checkDataFactoryNameAvailability","locations":[],"apiVersions":["2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"checkAzureDataFactoryNameAvailability","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"dataFactorySchema","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]},{"resourceType":"operations","locations":["West + US","North Europe","East US","West Central US"],"apiVersions":["2017-09-01-preview","2017-03-01-preview","2015-10-01","2015-09-01","2015-08-01","2015-07-01-preview","2015-05-01-preview","2015-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeAnalytics","namespace":"Microsoft.DataLakeAnalytics","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/dataLakeStoreAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/storageAccounts/containers/listSasTokens","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataLakeStore","namespace":"Microsoft.DataLakeStore","authorization":{"applicationId":"e9f49c6b-5ce5-44c8-925d-015017e9f7ad","roleDefinitionId":"17eb9cca-f08a-4499-b2d3-852d175f614f"},"resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"accounts/firewallRules","locations":["East + US 2","North Europe","Central US","West Europe"],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/operationresults","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"locations/capability","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-11-01","2015-10-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DataMigration","namespace":"Microsoft.DataMigration","authorization":{"applicationId":"a4bad4aa-bf02-4631-9f78-a64ffdba8150","roleDefinitionId":"b831a21d-db98-4760-89cb-bef871952df1","managedByRoleDefinitionId":"6256fb55-9e59-4018-a9e1-76b11c0a4c89"},"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"services/projects","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/operationStatuses","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["Brazil + South","North Europe","South Central US","West Europe","West US","East US","Canada + Central","West India","Southeast Asia"],"apiVersions":["2017-11-15-preview","2017-04-15-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforMySQL","namespace":"Microsoft.DBforMySQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DBforPostgreSQL","namespace":"Microsoft.DBforPostgreSQL","authorization":{"applicationId":"76cd24bf-a9fc-4344-b1dc-908275de6d6d","roleDefinitionId":"c13b7b9c-2ed1-4901-b8a8-16f35468da29"},"resourceTypes":[{"resourceType":"operations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"servers/virtualNetworkRules","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"checkNameAvailability","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/operationResults","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/azureAsyncOperation","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]},{"resourceType":"locations/performanceTiers","locations":["Brazil + South","Canada Central","Canada East","Central India","East Asia","East US + 2","East US","Japan East","Japan West","North Central US","North Europe","South + Central US","Southeast Asia","West Europe","West India","West US"],"apiVersions":["2017-12-01-preview","2017-04-30-preview","2016-02-01-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Devices","namespace":"Microsoft.Devices","resourceTypes":[{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"checkProvisioningServiceNameAvailability","locations":[],"apiVersions":["2017-11-15","2017-08-21-preview"]},{"resourceType":"usages","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs","locations":["West + US","North Europe","East Asia","East US","West Europe","Southeast Asia","Japan + East","Japan West","Australia East","Australia Southeast","West US 2","West + Central US","East US 2","Central US","UK South","UK West","South India","Central + India","Canada Central","Canada East","Brazil South","South Central US","Korea + South","Korea Central"],"apiVersions":["2017-07-01","2017-01-19","2016-02-03","2015-08-15-preview"]},{"resourceType":"IotHubs/eventGridFilters","locations":["West + US","East US","West US 2","West Central US","East US 2","Central US","North + Europe","West Europe","East Asia","Southeast Asia"],"apiVersions":["2018-01-15-preview"]},{"resourceType":"ProvisioningServices","locations":["East + US","West US","West Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2017-11-15","2017-08-21-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DomainRegistration","namespace":"Microsoft.DomainRegistration","authorization":{"applicationId":"ea2f600a-4980-45b7-89bf-d34da487bda1","roleDefinitionId":"54d7f2e3-5040-48a7-ae90-eebf629cfa0b"},"resourceTypes":[{"resourceType":"domains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"domains/domainOwnershipIdentifiers","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"topLevelDomains","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"checkDomainAvailability","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"listDomainRecommendations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"validateDomainRegistrationInformation","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"generateSsoRequest","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]},{"resourceType":"operations","locations":["global"],"apiVersions":["2015-04-01","2015-02-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.DynamicsLcs","namespace":"Microsoft.DynamicsLcs","resourceTypes":[{"resourceType":"lcsprojects","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/connectors","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"lcsprojects/clouddeployments","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-05-01-alpha","2015-04-01-alpha","2015-03-01-alpha","2015-02-01-privatepreview","2015-02-01-preview","2015-02-01-beta","2015-02-01-alpha"]},{"resourceType":"operations","locations":["Brazil + South","East Asia","East US","Japan East","Japan West","North Central US","North + Europe","South Central US","West Europe","West US","Southeast Asia","Central + US","East US 2","Australia East","Australia Southeast"],"apiVersions":["2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventGrid","namespace":"Microsoft.EventGrid","authorizations":[{"applicationId":"4962773b-9cdb-44cf-a8bf-237846a00ab7","roleDefinitionId":"7FE036D8-246F-48BF-A78F-AB3EE699C8F3"}],"resourceTypes":[{"resourceType":"locations","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"eventSubscriptions","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operations","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationsStatus","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/operationResults","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"locations/topicTypes","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"extensionTopics","locations":["West + US 2","East US","West US","Central US","East US 2","West Central US","West + Europe","North Europe","Southeast Asia","East Asia"],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]},{"resourceType":"operationsStatus","locations":[],"apiVersions":["2018-01-01","2017-09-15-preview","2017-06-15-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.EventHub","namespace":"Microsoft.EventHub","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77","roleDefinitionId":"eb8e1991-5de0-42a6-a64b-29b059341b7b"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US","West + US 2","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventhubs/consumergroups","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Features","namespace":"Microsoft.Features","resourceTypes":[{"resourceType":"features","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-12-01","2014-08-01-preview"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.HDInsight","namespace":"Microsoft.HDInsight","authorization":{"applicationId":"9191c4da-09fe-49d9-a5f1-d41cbe92ad95","roleDefinitionId":"d102a6f3-d9cb-4633-8950-1243b975886c","managedByRoleDefinitionId":"346da55d-e1db-4a5a-89db-33ab3cdb6fc6"},"resourceTypes":[{"resourceType":"clusters","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/applications","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"clusters/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Australia East","Australia Southeast","Brazil South","Central India"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/capabilities","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/usages","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/operationresults","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/azureasyncoperations","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"locations/validateCreateRequest","locations":["East + US 2","South Central US","Central US","Australia Southeast","Central India","West + Central US","West US 2","Canada East","Canada Central","Brazil South","UK + South","UK West","East Asia","Australia East","Japan East","Japan West","North + Europe","West Europe","North Central US","Southeast Asia","East US","Korea + South","Korea Central","West US"],"apiVersions":["2015-03-01-preview"]},{"resourceType":"operations","locations":["East + Asia","Southeast Asia","East US","East US 2","West US","North Central US","South + Central US","Central US","North Europe","West Europe","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India"],"apiVersions":["2015-03-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ImportExport","namespace":"Microsoft.ImportExport","authorization":{"applicationId":"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a","roleDefinitionId":"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151"},"resourceTypes":[{"resourceType":"jobs","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"locations/operationResults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","North Central US","North Europe","South Central US","Southeast + Asia","South India","UK South","UK West","West Central US","West Europe","West + India","West US","West US 2"],"apiVersions":["2016-11-01","2016-07-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LabServices","namespace":"Microsoft.LabServices","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"users","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.LocationBasedServices","namespace":"Microsoft.LocationBasedServices","resourceTypes":[{"resourceType":"accounts","locations":["Global"],"apiVersions":["2017-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Logic","namespace":"Microsoft.Logic","authorization":{"applicationId":"7cd684f4-8a78-49b0-91ec-6a35d38739ba","roleDefinitionId":"cb3ef1fb-6e31-49e2-9d87-ed821053fe58"},"resourceTypes":[{"resourceType":"workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations/workflows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"locations","locations":["North + Central US"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"operations","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2017-07-01","2016-10-01","2016-06-01","2015-08-01-preview","2015-02-01-preview"]},{"resourceType":"integrationAccounts","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West"],"apiVersions":["2016-06-01","2015-08-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningExperimentation","namespace":"Microsoft.MachineLearningExperimentation","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"1cc297bc-1829-4524-941f-966373421033"},"resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"accounts/workspaces/projects","locations":["Australia + East","East US 2","West Central US","Southeast Asia","West Europe"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]},{"resourceType":"teamAccounts/workspaces/projects","locations":["Australia + East","West Central US","East US 2"],"apiVersions":["2017-05-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningCompute","namespace":"Microsoft.MachineLearningCompute","authorization":{"applicationId":"0736f41a-0425-4b46-bdb5-1563eff02385","roleDefinitionId":"376aa7d7-51a9-463d-bd4d-7e1691345612","managedByRoleDefinitionId":"91d00862-cf55-46a5-9dce-260bbd92ce25"},"resourceTypes":[{"resourceType":"operationalizationClusters","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations","locations":["East + US 2"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operations","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]},{"resourceType":"locations/operationsStatus","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-08-01-preview","2017-06-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MachineLearningModelManagement","namespace":"Microsoft.MachineLearningModelManagement","resourceTypes":[{"resourceType":"accounts","locations":["East + US 2","West Central US","Australia East","West Europe","Southeast Asia"],"apiVersions":["2017-09-01-preview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2017-09-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ManagedLab","namespace":"Microsoft.ManagedLab","authorization":{"applicationId":"1a14be2a-e903-4cec-99cf-b2e209259a0f","roleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525","managedByRoleDefinitionId":"8f2de81a-b9aa-49d8-b24c-11814d3ab525"},"resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-12-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Management","namespace":"Microsoft.Management","authorization":{"applicationId":"f2c304cf-8e7e-4c3f-8164-16299ad9d272","roleDefinitionId":"c1cf3708-588a-4647-be7f-f400bbe214cf"},"resourceTypes":[{"resourceType":"resources","locations":[],"apiVersions":["2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"managementGroups","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]},{"resourceType":"getEntities","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operationResults","locations":[],"apiVersions":["2018-01-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2018-01-01-preview","2017-11-01-preview","2017-08-31-preview","2017-06-30-preview","2017-05-31-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceApps","namespace":"Microsoft.MarketplaceApps","resourceTypes":[{"resourceType":"classicDevServices","locations":["Northwest + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","Central US","North + Europe","West Europe","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","South India","Central India","Canada Central","Canada + East"],"apiVersions":["2017-11-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-11-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.MarketplaceOrdering","namespace":"Microsoft.MarketplaceOrdering","resourceTypes":[{"resourceType":"agreements","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-01"]},{"resourceType":"offertypes","locations":["South + Central US","West US"],"apiVersions":["2015-06-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Media","namespace":"Microsoft.Media","authorization":{"applicationId":"374b2a64-3b6b-436b-934c-b820eacca870","roleDefinitionId":"aab70789-0cec-44b5-95d7-84b64c9487af"},"resourceTypes":[{"resourceType":"mediaservices","locations":["Japan + West","Japan East","East Asia","Southeast Asia","West Europe","North Europe","East + US","West US","Australia East","Australia Southeast","Central US","Brazil + South","Central India","West India","South India","South Central US","Canada + Central","Canada East","West Central US","West US 2"],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-10-01","2015-04-01"]},{"resourceType":"checknameavailability","locations":[],"apiVersions":["2015-10-01","2015-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Migrate","namespace":"Microsoft.Migrate","resourceTypes":[{"resourceType":"projects","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"operations","locations":["West + Central US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations","locations":[],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]},{"resourceType":"locations/checkNameAvailability","locations":["West + Central US","East US"],"apiVersions":["2018-02-02","2017-11-11-preview","2017-09-25-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PolicyInsights","namespace":"Microsoft.PolicyInsights","authorization":{"applicationId":"1d78a85d-813d-46f0-b496-dd72f50a3ec0","roleDefinitionId":"63d2b225-4c34-4641-8768-21a1f7c68ce8"},"resourceTypes":[{"resourceType":"policyEvents","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"policyStates","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-12-preview","2017-10-17-preview","2017-08-09-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBI","namespace":"Microsoft.PowerBI","resourceTypes":[{"resourceType":"workspaceCollections","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]},{"resourceType":"locations","locations":[],"apiVersions":["2016-01-29"]},{"resourceType":"locations/checkNameAvailability","locations":["South + Central US","North Central US","East US 2","West US","West Europe","North + Europe","Brazil South","Southeast Asia","Australia Southeast","Canada Central","Japan + East","UK South","West India"],"apiVersions":["2016-01-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.PowerBIDedicated","namespace":"Microsoft.PowerBIDedicated","authorization":{"applicationId":"4ac7d521-0382-477b-b0f8-7e1d95f85ca2","roleDefinitionId":"490d5987-bcf6-4be6-b6b2-056a78cb693a"},"resourceTypes":[{"resourceType":"capacities","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-01-01-preview"]},{"resourceType":"locations/checkNameAvailability","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["Australia + Southeast","Brazil South","Canada Central","East Asia","East US","East US + 2","West India","Japan East","West Central US","North Central US","North Europe","South + Central US","Southeast Asia","UK South","West Europe","West US","West US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]},{"resourceType":"operations","locations":["East + US 2"],"apiVersions":["2017-10-01","2017-01-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Relay","namespace":"Microsoft.Relay","authorization":{"applicationId":"80369ed6-5f11-4dd9-bef3-692475845e77"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/hybridconnections/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/wcfrelays/authorizationrules","locations":[],"apiVersions":["2017-04-01","2016-07-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2016-07-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2016-07-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Resources","namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"tenants","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkPolicyCompliance","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkZonePeers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"checkresourcename","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/providers","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/operationresults","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourceGroups","locations":["Central + US","East Asia","Southeast Asia","East US","East US 2","West US","West US + 2","North Central US","South Central US","West Central US","North Europe","West + Europe","Japan East","Japan West","Brazil South","Australia Southeast","Australia + East","West India","South India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/resourcegroups/resources","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/locations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagnames","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"subscriptions/tagNames/tagValues","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"deployments/operations","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"links","locations":[],"apiVersions":["2017-08-01","2017-06-01","2017-05-10","2017-05-01","2017-03-01","2016-09-01","2016-07-01","2016-06-01","2016-02-01","2015-11-01","2015-01-01","2014-04-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Scheduler","namespace":"Microsoft.Scheduler","resourceTypes":[{"resourceType":"jobcollections","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operations","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"operationResults","locations":["North + Central US","South Central US","North Europe","West Europe","East Asia","Southeast + Asia","West US","East US","Japan West","Japan East","Brazil South","Central + US","East US 2","Australia East","Australia Southeast","South India","Central + India","West India","Canada Central","Canada East","West US 2","West Central + US","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2016-03-01","2016-01-01","2014-08-01-preview"]},{"resourceType":"flows","locations":["North + Central US","Central US","South Central US","North Europe","West Europe","East + Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan + East","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2015-08-01-preview","2015-02-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Search","namespace":"Microsoft.Search","resourceTypes":[{"resourceType":"searchServices","locations":["West + US","East US","North Europe","West Europe","Southeast Asia","East Asia","North + Central US","South Central US","Japan West","Australia East","Brazil South","West + US 2","East US 2","Central India","West Central US","Canada Central","UK South"],"apiVersions":["2015-08-19","2015-02-28"]},{"resourceType":"checkServiceNameAvailability","locations":[],"apiVersions":["2015-02-28","2014-07-31-Preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2015-08-19"]},{"resourceType":"resourceHealthMetadata","locations":["West + US","West US 2","East US","East US 2","North Europe","West Europe","Southeast + Asia","East Asia","North Central US","South Central US","Japan West","Australia + East","Brazil South","Central India","West Central US","Canada Central","UK + South"],"apiVersions":["2015-08-19"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-08-19","2015-02-28"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceBus","namespace":"Microsoft.ServiceBus","authorization":{"applicationId":"80a10ef9-8168-493d-abf9-3297c4ef6e3c","roleDefinitionId":"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7"},"resourceTypes":[{"resourceType":"namespaces","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/queues/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/authorizationrules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/topics/subscriptions/rules","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"checkNamespaceAvailability","locations":[],"apiVersions":["2015-08-01","2014-09-01"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"sku","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"premiumMessagingRegions","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/eventgridfilters","locations":["Australia + East","Australia Southeast","Central US","East US","East US 2","West US 2","West + US","North Central US","South Central US","West Central US","East Asia","Southeast + Asia","Brazil South","Japan East","Japan West","North Europe","West Europe","Central + India","South India","West India","Canada Central","Canada East","UK West","UK + South","Korea Central","Korea South"],"apiVersions":["2017-04-01","2015-08-01","2014-09-01"]},{"resourceType":"namespaces/disasterrecoveryconfigs","locations":[],"apiVersions":["2017-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.ServiceFabric","namespace":"Microsoft.ServiceFabric","authorization":{"applicationId":"74cb6831-0dbb-4be1-8206-fd4df301cdc2","roleDefinitionId":"e55cc65f-6903-4917-b4ef-f8d4640b57f5"},"resourceTypes":[{"resourceType":"clusters","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/clusterVersions","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operations","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"locations/operationResults","locations":["West + US","West US 2","West Central US","East US","East US 2","Central US","West + Europe","North Europe","UK West","UK South","Australia East","Australia Southeast","North + Central US","East Asia","Southeast Asia","Japan West","Japan East","South + India","West India","Central India","Brazil South","South Central US","Korea + Central","Korea South","Canada Central","Canada East"],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-07-01-preview","2016-09-01","2016-03-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Solutions","namespace":"Microsoft.Solutions","authorization":{"applicationId":"ba4bc2bd-843f-4d61-9d33-199178eae34e","roleDefinitionId":"6cb99a0b-29a8-49bc-b57b-057acc68cd9a","managedByRoleDefinitionId":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"},"resourceTypes":[{"resourceType":"appliances","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applianceDefinitions","locations":["West + Central US"],"apiVersions":["2016-09-01-preview"]},{"resourceType":"applications","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"applicationDefinitions","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01"]},{"resourceType":"locations","locations":["West + Central US"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"locations/operationstatuses","locations":["South + Central US","North Central US","West Central US","West US","West US 2","East + US","East US 2","Central US","West Europe","North Europe","East Asia","Southeast + Asia","Brazil South","Japan West","Japan East","Australia East","Australia + Southeast","South India","West India","Central India","Canada Central","Canada + East","UK South","UK West","Korea Central","Korea South"],"apiVersions":["2017-12-01","2017-09-01","2016-09-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-12-01","2017-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorageSync","namespace":"Microsoft.StorageSync","authorizations":[{"applicationId":"9469b9f5-6722-4481-a2b2-14ed560b706f"}],"resourceTypes":[{"resourceType":"storageSyncServices","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/cloudEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/syncGroups/serverEndpoints","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/registeredServers","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"storageSyncServices/workflows","locations":["West + US","West Europe","North Europe","Southeast Asia","East Asia","Australia East","East + US","Canada Central","Canada East","Central US","East US 2","UK South"],"apiVersions":["2017-06-05-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-06-05-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StorSimple","namespace":"Microsoft.StorSimple","resourceTypes":[{"resourceType":"managers","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","West Central US","Japan East","Japan West","Australia East","Australia + Southeast"],"apiVersions":["2017-06-01","2017-05-15","2017-01-01","2016-10-01","2016-06-01","2015-03-15","2014-09-01"]},{"resourceType":"operations","locations":["West + Central US","Southeast Asia"],"apiVersions":["2016-10-01","2016-06-01","2015-03-15","2014-09-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.StreamAnalytics","namespace":"Microsoft.StreamAnalytics","resourceTypes":[{"resourceType":"streamingjobs","locations":["Central + US","West Europe","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations","locations":["West + Europe","Central US","East US 2","North Europe","Japan East","West US","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","West US 2","UK West","Canada Central","Canada East"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"locations/quotas","locations":[],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2015-03-01-preview"]},{"resourceType":"streamingjobs/diagnosticSettings","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"streamingjobs/metricDefinitions","locations":["East + US","East US 2","North Central US","North Europe","West Europe","Brazil South","Central + India","West Central US","UK South","UK West","Canada Central","Canada East","West + US 2","West US","Central US","South Central US","Japan East","Japan West","East + Asia","Southeast Asia","Australia East","Australia Southeast"],"apiVersions":["2014-04-01"]},{"resourceType":"operations","locations":["West + Europe","West US","Central US","East US 2","North Europe","Japan East","Southeast + Asia","South Central US","East Asia","Japan West","North Central US","East + US","Australia East","Australia Southeast","Brazil South","Central India","West + Central US","UK South","UK West","Canada Central","Canada East","West US 2"],"apiVersions":["2017-04-01-preview","2016-03-01","2015-11-01","2015-10-01","2015-09-01","2015-08-01-preview","2015-06-01","2015-05-01","2015-04-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.Subscription","namespace":"Microsoft.Subscription","authorizations":[{"applicationId":"e3335adb-5ca0-40dc-b8d3-bedc094e523b","roleDefinitionId":"c8967224-f823-4f1b-809b-0110a008dd26"}],"resourceTypes":[{"resourceType":"SubscriptionDefinitions","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"SubscriptionOperations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]},{"resourceType":"operations","locations":["West + US"],"apiVersions":["2017-11-01-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/microsoft.support","namespace":"microsoft.support","resourceTypes":[{"resourceType":"operations","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]},{"resourceType":"supporttickets","locations":["North + Central US","South Central US","Central US","West Europe","North Europe","West + US","East US","East US 2","Japan East","Japan West","Brazil South","Southeast + Asia","East Asia","Australia East","Australia Southeast"],"apiVersions":["2015-07-01-Preview","2015-03-01"]}],"registrationState":"Registered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.TimeSeriesInsights","namespace":"Microsoft.TimeSeriesInsights","authorizations":[{"applicationId":"120d688d-1518-4cf7-bd38-182f158850b6","roleDefinitionId":"5a43abdf-bb87-42c4-9e56-1c24bf364150"}],"resourceTypes":[{"resourceType":"environments","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/eventsources","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/referenceDataSets","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"environments/accessPolicies","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]},{"resourceType":"operations","locations":["East + US","East US 2","North Europe","West Europe","West US"],"apiVersions":["2017-11-15","2017-02-28-preview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Microsoft.WorkloadMonitor","namespace":"Microsoft.WorkloadMonitor","authorizations":[{"applicationId":"c4583fa2-767f-4008-9148-324598ac61bb","roleDefinitionId":"749f88d5-cbae-40b8-bcfc-e573ddc772fa"}],"resourceTypes":[{"resourceType":"operations","locations":["East + US"],"apiVersions":["2018-01-29-privatepreview"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Myget.PackageManagement","namespace":"Myget.PackageManagement","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/NewRelic.APM","namespace":"NewRelic.APM","authorization":{"allowedThirdPartyExtensions":[{"name":"NewRelic_AzurePortal_APM"}]},"resourceTypes":[{"resourceType":"accounts","locations":["North + Central US","South Central US","West US","East US","North Europe","West Europe","Southeast + Asia","East Asia","Japan East","Japan West"],"apiVersions":["2014-10-01","2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/nuubit.nextgencdn","namespace":"nuubit.nextgencdn","resourceTypes":[{"resourceType":"accounts","locations":["East + US","East US 2","North Central US","South Central US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast","West US","Central US"],"apiVersions":["2017-05-05"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2017-05-05"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Paraleap.CloudMonix","namespace":"Paraleap.CloudMonix","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-10"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Pokitdok.Platform","namespace":"Pokitdok.Platform","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-05-17"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-05-17"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RavenHq.Db","namespace":"RavenHq.Db","resourceTypes":[{"resourceType":"databases","locations":["East + US","North Europe","West Europe"],"apiVersions":["2016-07-18"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-07-18","2016-06-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Raygun.CrashReporting","namespace":"Raygun.CrashReporting","resourceTypes":[{"resourceType":"apps","locations":["East + US"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Memcached","namespace":"RedisLabs.Memcached","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RedisLabs.Redis","namespace":"RedisLabs.Redis","resourceTypes":[{"resourceType":"operations","locations":[],"apiVersions":["2016-07-10"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/RevAPM.MobileCDN","namespace":"RevAPM.MobileCDN","resourceTypes":[{"resourceType":"accounts","locations":["Central + US","East US","East US 2","North Central US","South Central US","West US","North + Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2016-08-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2017-05-24","2016-08-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sendgrid.Email","namespace":"Sendgrid.Email","resourceTypes":[{"resourceType":"accounts","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]},{"resourceType":"operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","Japan East","Japan + West","Korea Central","Korea South","North Central US","North Europe","South + Central US","South India","Southeast Asia","UK South","UK West","West Central + US","West Europe","West India","West US","West US 2"],"apiVersions":["2015-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Signiant.Flight","namespace":"Signiant.Flight","resourceTypes":[{"resourceType":"accounts","locations":["East + US","Central US","North Central US","South Central US","West US","North Europe","West + Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia + East","Australia Southeast"],"apiVersions":["2015-06-29"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-29"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/Sparkpost.Basic","namespace":"Sparkpost.Basic","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-08-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-08-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/stackify.retrace","namespace":"stackify.retrace","resourceTypes":[{"resourceType":"services","locations":["West + US"],"apiVersions":["2016-01-01"]},{"resourceType":"operations","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2016-01-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/SuccessBricks.ClearDB","namespace":"SuccessBricks.ClearDB","resourceTypes":[{"resourceType":"databases","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","South Central US","Australia East","Australia Southeast","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]},{"resourceType":"clusters","locations":["Brazil + South","Central US","East Asia","East US","East US 2","Japan East","Japan + West","North Central US","North Europe","Southeast Asia","West Europe","West + US","Australia Southeast","Australia East","South Central US","Canada Central","Canada + East","Central India","South India","West India"],"apiVersions":["2014-04-01"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/TrendMicro.DeepSecurity","namespace":"TrendMicro.DeepSecurity","resourceTypes":[{"resourceType":"accounts","locations":["Central + US"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"},{"id":"/subscriptions/AZURE_SUBSCRIPTION_ID/providers/U2uconsult.TheIdentityHub","namespace":"U2uconsult.TheIdentityHub","resourceTypes":[{"resourceType":"services","locations":["West + Europe"],"apiVersions":["2015-06-15"]},{"resourceType":"operations","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"listCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]},{"resourceType":"updateCommunicationPreference","locations":[],"apiVersions":["2015-06-15"]}],"registrationState":"NotRegistered"}]}' + http_version: + recorded_at: Wed, 07 Mar 2018 20:44:00 GMT +- request: + method: get + uri: https://management.azure.com/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test?api-version=2018-01-01 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + User-Agent: + - rest-client/2.0.2 (linux-gnu x86_64) ruby/2.4.2p198 + Content-Type: + - application/json + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCIsImtpZCI6IlNTUWRoSTFjS3ZoUUVEU0p4RTJnR1lzNDBRMCJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tLyIsImlzcyI6Imh0dHBzOi8vc3RzLndpbmRvd3MubmV0Lzc3ZWNlZmI2LWNmZjAtNGU4ZC1hNDQ2LTc1N2E2OWNiOTQ4NS8iLCJpYXQiOjE1MjA0NTUxMzYsIm5iZiI6MTUyMDQ1NTEzNiwiZXhwIjoxNTIwNDU5MDM2LCJhaW8iOiJZMk5nWUZCTzNGYjNsL3ZQM3pXbkd3d1dlcjVhQVFBPSIsImFwcGlkIjoiZmMxYzIyMjUtMDY1Zi00YmE4LTgzZDktZDg2NjYyZjU3OGFmIiwiYXBwaWRhY3IiOiIxIiwiZ3JvdXBzIjpbIjQwNzM4OTg2LTNjODItNGNmMS05OWZjLTEzNDU3ZTMzMzJmYyIsIjBkMDE0M2VhLTMzOWUtNDJlMC1hMjRlLWI1YThmYzY5ZmYxNCIsImQ2NWYyZTVkLWZiZmItNDE1My04NmIyLTU5NzliNGU2YjU5MiJdLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83N2VjZWZiNi1jZmYwLTRlOGQtYTQ0Ni03NTdhNjljYjk0ODUvIiwib2lkIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwic3ViIjoiMzA2ZWI0MmEtMzU4NS00YTM3LTk1YjctMzhiYzBlOTgyOGQyIiwidGlkIjoiNzdlY2VmYjYtY2ZmMC00ZThkLWE0NDYtNzU3YTY5Y2I5NDg1IiwidXRpIjoiNGVxeW5FWllpMGVvSVVrZjRJY0FBQSIsInZlciI6IjEuMCJ9.HkXwNGZ2gu7CYj8au53_y8bB97uG_XadrpNawJAtaDHwBGrU5WiG3uoivc_kl78lP-rBCGHQVlJy6acZnCkw_lLxn5rDJx3uJZNL_UzyHLNvVTk3bKLcoL-3XhDzZ18XfsARxWJ-Wkullb5TiEymktX_e3h2-zbcxkf3Hxr8ymMk-Mhsx6rgkopZN-BAI6v1dyVI9AAhCSY0vjgpIbN2UqIzaVhJwxF7AXyPOmV3mNzyKGo69emIiKI5r2fP_I-gZsZ5Qp821Toobj1ejuivPmN9nnSXK1jwBeaAnrgpl_x2N0zUgjzNeT9uLPspVy-E_a1iHTKal2iRz4sCFVKUoQ + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache + Pragma: + - no-cache + Transfer-Encoding: + - chunked + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Etag: + - W/"50b1eb2f-0dcc-4ac4-af10-2a94f10d8ea8" + Vary: + - Accept-Encoding + X-Ms-Request-Id: + - f5899745-b454-4ad6-84d1-63e065336568 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + Server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - '14973' + X-Ms-Correlation-Request-Id: + - e2cf0c5d-4485-4d41-a07a-76af61df80b2 + X-Ms-Routing-Request-Id: + - WESTEUROPE:20180307T204400Z:e2cf0c5d-4485-4d41-a07a-76af61df80b2 + X-Content-Type-Options: + - nosniff + Date: + - Wed, 07 Mar 2018 20:44:00 GMT + body: + encoding: ASCII-8BIT + string: "{\r\n \"name\": \"ladas_test\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test\",\r\n + \ \"etag\": \"W/\\\"50b1eb2f-0dcc-4ac4-af10-2a94f10d8ea8\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"d9da9fe5-ab8d-4476-9951-109e4d2d8d0e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": + [\r\n \"172.29.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n + \ {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test/subnets/default\",\r\n + \ \"etag\": \"W/\\\"50b1eb2f-0dcc-4ac4-af10-2a94f10d8ea8\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"172.29.0.0/24\"\r\n }\r\n },\r\n + \ {\r\n \"name\": \"ladas_test\",\r\n \"id\": \"/subscriptions/AZURE_SUBSCRIPTION_ID/resourceGroups/miq-azure-test1/providers/Microsoft.Network/virtualNetworks/ladas_test/subnets/ladas_test\",\r\n + \ \"etag\": \"W/\\\"50b1eb2f-0dcc-4ac4-af10-2a94f10d8ea8\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"172.29.1.0/24\",\r\n \"serviceEndpoints\": + []\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n + \ \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n + \ }\r\n}" + http_version: + recorded_at: Wed, 07 Mar 2018 20:44:01 GMT +recorded_with: VCR 3.0.3